php的文件中,它說:如何從孩子獲得父母重寫的財產?
範圍解析操作符(也稱爲Paamayim Nekudotayim)或 簡單來說,雙結腸,是一個令牌,允許 靜態,常量和覆蓋接入屬性或一類的方法。
我得到一個錯誤,當我嘗試訪問覆蓋的(而不是靜態)父屬性:
class foo
{
public $bar = 'foobar';
}
class baz extends foo
{
public $bar = 'bazbar';
public function get_bar()
{
echo parent::$bar; //Fatal error: Access to undeclared static property: foo::$bar
}
}
$baz = new baz;
$baz->get_bar();
$ this-> bar from the child will give you bazbar,not foobar –