在PHP中,可以使用self::
關鍵字來調用靜態屬性。例如:
class Example {
public static $staticProperty = "Static Property";
public function getStaticProperty() {
return self::$staticProperty;
}
}
echo Example::$staticProperty; // 輸出 "Static Property"
$example = new Example();
echo $example->getStaticProperty(); // 輸出 "Static Property"
在上面的示例中,我們使用self::$staticProperty
來調用靜態屬性$staticProperty
。無論是在類的內部還是外部,都可以使用self::
關鍵字來訪問靜態屬性。