function __construct($name){
$this->$name = $name;
}
function get_name() {
return $this->name;
}
}
$trObj = new Training("first_try");
var_dump($trObj->get_name());
$this->name = $name;
А что не так? Я вот отсюда это скопировал: https://www.w3schools.com/php/phptryit.asp?filename=tryphp_constructor
Обсуждают сегодня