PHP的- = :: self $this
生活随笔
收集整理的這篇文章主要介紹了
PHP的- = :: self $this
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
=>?
數組中 用于數組的?key?和?value之間的關系
$a?=?array(
??'0'?=>?'a',
??'1'?=>?'b',
);
->
類中 用于引用類實例的方法和屬性class Test{function add(){return $this->var++;}var $var = 0; }$a = new Test; echo $a->add(); echo $a->var;::
類中 靜態方法和靜態屬性的引用方法
class Test{public static function test(){public static $test = 1;} }Test::test(); 調用靜態方法test Test::$test; 調用$test靜態屬性的值SELF
self是引用靜態類的類名
$this
$this是引用非靜態類的實例名
總結
以上是生活随笔為你收集整理的PHP的- = :: self $this的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 神话一共有多少个时代
- 下一篇: Yii的CURD