首頁 > 後端開發 > php教程 > php 静态绑定之static::

php 静态绑定之static::

WBOY
發布: 2016-06-23 13:27:27
原創
820 人瀏覽過

对于静态绑定中的static::在此不多做解释,我想用实例来证明,这个例子是来自官方文档:

For example one:

class A{   private function foo(){       echo "this is a test function"."<br>";   }   public function test(){       $this->foo();       static::foo();   }}$A=new A();$A->test();
登入後複製

输出结果:
this is a test function
this is a test function

For example Two:

class A{   private function foo(){       echo "this is a test function"."<br>";   }   public function test(){       $this->foo();       static::foo();   }}class B extends A{}$B=new B();$B->test();
登入後複製

输出结果:
this is a test function
this is a test function

For example three:

class A{   private function foo(){       echo "this is a test function"."<br>";   }   public function test(){       $this->foo();       static::foo();   }}class B extends A{}class C extends A{   private function foo(){   }    } $C=new C();$C->test();
登入後複製

输出结果:
this is a test function
( ! ) Fatal error: Call to private method C::foo() from context ‘A’ in D:\www\testXdebug\index.php on line 21
Call Stack
Time Memory Function Location
1 0.0156 135536 {main}( ) …\index.php:0
2 0.0156 135936 A->test( ) …\index.php:35

版权声明:本文为博主原创文章,未经博主允许不得转载。

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板