我想學習codeacademy上的PHP OOP,我想我瘋了。 我以每種方式將我的代碼與示例代碼進行了比較,它只是不會工作! 請幫我明白是怎麼回事錯誤,當我嘗試回聲從對象$學生年齡屬性,從Person類PHP對象不會回顯屬性
<?php
class Person {
public $isAlive = true;
public $firstname;
public $lastname;
public $age;
public function __contruct($firstname, $lastname, $age)
{
$this->firstname = $firstname;
$this->lastname = $lastname;
$this->age = $age;
}
}
$teacher = new Person("boring", "12345", 12345);
$student = new Person('hans', 'hansen', 24);
$me = new Person('boring', '12345', 12345);
echo $student->age;
?>
什麼錯誤? – sinaneker
@sinaneker我認爲他的意思是'$學生 - >年齡'是空的,他期望它是24. – Mansfield
@Mansfield一個好的,但是當我看它的代碼應該工作 – sinaneker