PHP也不例外!所謂靜態方法(屬性)就是以static關鍵詞標注的屬性或者方法(例如:靜態屬性public static username;)
靜態方法和非靜態方法最大的區別在於他們的生命周期不同,用一個實例來說明
靜態方法定義
定義靜態方法很簡單,在聲明關鍵詞function之前加上static,例如:
代碼如下 復制代碼class A
{
static function fun()
{
// do somathing
}
}
靜態方法使用
使用的時候和靜態變量差不多,不需要實例化,直接用::調用,例如:
代碼如下 復制代碼A::fun()
對比普通方法
因為靜態方法的調用不需要實例化,所以在靜態方法中引用類自身的屬性或者方法的時候會出錯,也就是形如self和$this是錯誤的。
class MyClass
{
public $num = 5;
function __construct()
{
$this->num = 10;
}
function fun_1()
{
echo "I am a public method named fun_1.n";
echo "The num of object is {$this->num}.n";
}
static function fun_2()
{
echo "I am a static method named fun_2.n";
}
function fun_3($n)
{
echo "The arg is {$n}n";
}
}
$m = new MyClass;
$m->fun_1();
$m->fun_2();
$m->fun_3('test');
MyClass::fun_1();
MyClass::fun_2();
MyClass::fun_3('test');
輸出結果:
lch@localhost:php $ php class_method.php
I am a public method named fun_1.
The num of object is 10.
I am a static method named fun_2.
The arg is test
I am a public method named fun_1.
PHP Fatal error: Using $this when not in object context in /Users/lch/program/php/class_method.php on line 14
再看一實例
用一個實例來說明。
代碼如下 復制代碼class user{
public static $username; //聲明一個靜態屬性
public $password; //聲明一個非靜態屬性
function __construct($pwd) {
echo ‘Username:’,self::$username; //輸出靜態屬性
self::$username = ‘admin’; //為靜態屬性賦值
$this->password = $pwd; //為非靜態屬性賦值
}
public function show(){ //輸出類屬性
echo ‘
Username:’,self::$username;
echo ‘
Password:’,$this->password;
}
public static function sshow(){
echo ‘
Username:’,self::$username;
echo ‘
Password:’,$this->password;
}
}
user::$username = ‘root’; //為賦值user類的靜態屬性賦值
$objUser = new user(’123456′); //實例化user類
$objUser->sshow();
unset($objUser);
echo ‘
Username:’,user::$username;
/*
* 輸出結果為:
* Username:root
* Username:admin
* Password:123456
* Usern
ame:admin
* */
從這裡實例中可以看出,靜態屬性在類實例化以前就起作用了,並且在對象被銷毀時靜態屬性依然可以發揮作用!
也因為靜態方法的這種屬性,所以不能在靜態方法中調用非靜態屬性或者方法
接著看
1、php類中,假設所有的屬性與方法的可見性為public,那麼在外部訪問類的方法或屬性時,都必須通過對象【類的實例化過程】來調用。
eg:
代碼如下 復制代碼class Log
{
public $root = DIRECTORY_SEPARATOR;
public $logPath = '/data/app/www/test-realtime.monitoring.c.kunlun.com/log';
public $defaultDir = 'default';
public function writeLog($logName, $logType, $data, $newDir = FALSE)
{
$fileName = '';
if (!file_exists($this->logPath))
{
mkdir($this->logPath, 0777);
}
if ($newDir !== FALSE)
{
@mkdir($this->logPath.$this->root.$newDir, 0777);
$fileName = $this->logPath.$this->root.$newDir.$this->root.date('Y-m-d', time()).'_'.$logName.'_'.$logType.'.log';
}
else
{
@mkdir($this->logPath.$this->root.$this->defaultDir, 0777);
$fileName = $this->logPath.$this->root.$this->defaultDir.$this->root.date('Y-m-d', time()).'_'.$logName.'_'.$logType.'.log';
}
file_put_contents($fileName, date('Y-m-d H:i:s').' '.$data."n", FILE_APPEND);
}
}
類的實例化對象的過程:$logObj = new Log();
訪問類中的方法:$logObj->writeLog($param1, $param2, $param3, $param4);
訪問類中的屬性:echo $logObj->root;
2、如果類中的屬性前被static關鍵字修飾時,就不能通過對象來訪問被static修飾的屬性,但如果是類中的方法被static修飾時則即可以通過對象也可以通過類名::方法名的方式來進行訪問。
3、如果類中的方法被static修飾則,方法中不能用$this,$this指的是類的實例化對象,由於靜態方法不用通過對象就可以調用,所以偽變量$this不可用。