Using Objects in PHP course (Codeacademy.com) の Property Panic (2) を実行していますが、このエラーが発生します。これが私のコードです:
<!DOCTYPE html>
<html>
<head>
<title>Reconstructing the Person Class</title>
<link type='text/css' rel='stylesheet' href='style.css'/>
</head>
<body>
<p>
<?php
class Person{
public $isAlive = true;
public $firstname;
public $lastname;
public $age;
}
public function __construct($firstname, $lastname, $age){
$this->firstname = $firstname;
$this->lastname = $lastname;
$this->age = $age;
}
$teacher = new Person("boring","12345",12345);
$student = new Person("a","b",23);
echo $teacher->age;
?>
</p>
</body>
それはどこから来たのですか?ありがとう