在PHP中,self是一個特殊的關鍵字,用于訪問當前類的靜態屬性和靜態方法。它可以通過以下兩種方式使用:
self::
加上屬性名來訪問當前類的靜態屬性。例如:class MyClass {
public static $myProperty = "Hello";
public static function getMyProperty() {
return self::$myProperty;
}
}
echo MyClass::$myProperty; // 輸出:Hello
echo MyClass::getMyProperty(); // 輸出:Hello
self::
加上方法名來調用當前類的靜態方法。例如:class MyClass {
public static function myMethod() {
echo "Hello from myMethod";
}
public static function anotherMethod() {
self::myMethod();
}
}
MyClass::myMethod(); // 輸出:Hello from myMethod
MyClass::anotherMethod(); // 輸出:Hello from myMethod
需要注意的是,self關鍵字只能在類的內部使用,并且只能訪問當前類的靜態成員。如果需要訪問父類的靜態成員,可以使用parent::
關鍵字。