我在 PHP 中使用 OOP,我得到了以下代码:
索引.php:
<?php
include('user.class.php');
include('page.class.php');
$user = new User;
$page = new Page;
$page->print_username();
?>
用户类.php:
<?php
class User {
public function __construct() {
$this->username = "Anna";
}
}
?>
page.class.php:
<?php
class Page extends User {
public function __construct() {
}
public function print_username() {
echo $user->username;
}
}
?>
我的问题出现在 print_username() 函数中的“Page”类中。
如何在此类中访问 $user 对象的属性?如您所见,我在 index.php 中定义了这两个对象。
提前致谢
/C