سلام خسته نباشید
معنی ? در کد زیر چیه ؟
توی داکیومنت php
https://www.php.net/manual/en/language.oop5.properties.php
<?php
class User
{
public int $id;
public ?string $name;
public function __construct(int $id, ?string $name)
{
$this->id = $id;
$this->name = $name;
}
}
$user = new User(1234, null);
var_dump($user->id);
var_dump($user->name);
?>