<?phpclass Man { public $name = ""; function __construct(string $name) { $this->name = $name; }}$man = new Man("Alex");echo $man->name;