编写一个简单的PHP程序,演示类的定义和对象的创建: php <?php // 定义一个名为 Person 的类 class Person { // 定义公有属性 public $name; public $age; // 构造函数,用于初始化对象 public function __construct($name, $age) { $this->name = $name; $this->age = $age; } //...