PHP 中的 __set()
魔術方法可以用于在對象上設置屬性,但它并不能直接實現私有屬性。__set()
方法主要用于在對象上設置一個不存在的屬性時,自動調用該類的構造函數來初始化這個屬性。
要實現私有屬性,你可以使用以下方法之一:
class MyClass {
private $myProperty;
public function __get($property) {
if ($property === 'myProperty') {
return $this->myProperty;
}
return null;
}
public function __set($property, $value) {
if ($property === 'myProperty') {
$this->myProperty = $value;
}
}
}
class MyClass {
private $myProperty;
public function __get($property) {
if ($property === 'myProperty') {
return function($value) {
$this->myProperty = $value;
};
}
return null;
}
public function __set($property, $value) {
if ($property === 'myProperty') {
$this->myProperty = $value;
}
}
}
在這兩種方法中,外部代碼無法直接訪問和修改 myProperty
屬性,而必須通過公共的 getter 和 setter 方法來進行操作。這樣可以實現對屬性的封裝和保護。