php new self() 一般在類內部使用,作用是對自身類實例化,下面給個實例講解如何使用:
<?php
class phpernote{
public function __construct(){
echo '一聚教程網!';
}
public static function getInstance(){
new self();
}
}
phpernote::getInstance();
返回結果:
一聚教程網!
例子
//self是指向類的本身,只跟類有關,跟任何對象實例無關
class test_self{
private static $first_count; //定義靜態變量
private $last_count;
function __construct(){
$this->last_count=++self::$first_count;//直接用self調用變量的值賦值給另一個變量
}
function __destruct(){}
function print_self(){
print($this->last_count);
}
}
$abc=new test_self();//實例化對象
$abc->print_self();//1
echo '<br />';
總結,,self是指向當前類的指針意思就是指類的本身了,所以我們如果要調用自己的話就可以這new self來創建了