魔术__get吸气剂在PHP中的静态属性(Magic __get getter for static

2019-06-18 11:14发布

public static function __get($value)

不工作,即使它没有,它恰巧,我已经需要魔法__get吸在同一个类实例的属性。

这可能是一个yes或no的问题,所以,这是可能的吗?

Answer 1:

不,这是不可能的。

引述__get的手册页 :

只限会员超载工作在目标范围内。 这些魔术方法将不能在静态情况下被触发。 因此,这些方法不能被声明为静态的。


在PHP 5.3, __callStatic已被添加; 但没有__getStatic也不__setStatic之中; 即使有/编码他们的想法经常回来PHP内部@ mailling名单上。

甚至有一个请求注释:静态类PHP
但是,尽管如此,没有执行(没有?)



Answer 2:

也许有人仍然需要这样的:

static public function __callStatic($method, $args) {

  if (preg_match('/^([gs]et)([A-Z])(.*)$/', $method, $match)) {
    $reflector = new \ReflectionClass(__CLASS__);
    $property = strtolower($match[2]). $match[3];
    if ($reflector->hasProperty($property)) {
      $property = $reflector->getProperty($property);
      switch($match[1]) {
        case 'get': return $property->getValue();
        case 'set': return $property->setValue($args[0]);
      }     
    } else throw new InvalidArgumentException("Property {$property} doesn't exist");
  }
}


Answer 3:

非常漂亮的mbrzuchalski。 但它似乎只对公共变量的工作。 只要改变你的交换机到这允许它访问私有/受保护的:

switch($match[1]) {
   case 'get': return self::${$property->name};
   case 'set': return self::${$property->name} = $args[0];
}

而且你可能想改变if语句来限制访问的变量,否则会破坏让他们为私有或受保护的目的。

if ($reflector->hasProperty($property) && in_array($property, array("allowedBVariable1", "allowedVariable2"))) {...)

因此,例如,我设计了拉各种数据我出使用SSH梨模块的远程服务器的一类,我希望它做出基于它被问什么服务器查找在目标目录中的某些假设。 mbrzuchalski的方法的扭捏版本非常适合。

static public function __callStatic($method, $args) {
    if (preg_match('/^([gs]et)([A-Z])(.*)$/', $method, $match)) {
        $reflector = new \ReflectionClass(__CLASS__);
        $property = strtolower($match[2]). $match[3];
        if ($reflector->hasProperty($property)) {
            if ($property == "server") {
                $property = $reflector->getProperty($property);
                switch($match[1]) {
                    case 'set':
                        self::${$property->name} = $args[0];
                        if ($args[0] == "server1") self::$targetDir = "/mnt/source/";
                        elseif($args[0] == "server2") self::$targetDir = "/source/";
                        else self::$targetDir = "/";
                    case 'get': return self::${$property->name};
                }
            } else throw new InvalidArgumentException("Property {$property} is not publicly accessible.");
        } else throw new InvalidArgumentException("Property {$property} doesn't exist.");
    }
}


Answer 4:

试试这个:

class nameClass{
    private static $_sData = [];
    private static $object = null;
    private $_oData = [];

    public function __construct($data=[]){
        $this->_oData = $data;
    }

    public static function setData($data=[]){
        self::$_sData = $data;
    }

    public static function Data(){
        if( empty( self::$object ) ){
            self::$object = new self( self::$_sData ); 
        }
        return self::$object;
    }

    public function __get($key) {
        if( isset($this->_oData[$key] ){
            return $this->_oData[$key];
        }
    }

    public function __set($key, $value) {
        $this->_oData[$key] = $value;
    }
}

nameClass::setData([
    'data1'=>'val1',
    'data2'=>'val2',
    'data3'=>'val3',
    'datan'=>'valn'
]);

nameClass::Data()->data1 = 'newValue';
echo(nameClass::Data()->data1);
echo(nameClass::Data()->data2);


Answer 5:

此外,您还可以得到静态属性访问他们喜欢的成员属性,使用__get():

class ClassName {    
    private static $data = 'smth';

    function __get($field){
        if (isset($this->$field)){
            return $this->$field;
        }
        if(isset(self::$$field)){  
            return self::$$field;  // here you can get value of static property
        }
        return NULL;
    }
}

$obj = new ClassName();
echo $obj->data; // "smth"


Answer 6:

结合__callStaticcall_user_funccall_user_func_array可以给访问的PHP类的静态属性

例:

class myClass {

    private static $instance;

    public function __construct() {

        if (!self::$instance) {
            self::$instance = $this;
        }

        return self::$instance;
    }

    public static function __callStatic($method, $args) {

        if (!self::$instance) {
            new self();
        }

        if (substr($method, 0, 1) == '$') {
            $method = substr($method, 1);
        }

        if ($method == 'instance') {
            return self::$instance;
        } elseif ($method == 'not_exist') {
            echo "Not implemented\n";
        }
    }

    public function myFunc() {
        echo "myFunc()\n";
    }

}

// Getting $instance
$instance = call_user_func('myClass::$instance');
$instance->myFunc();

// Access to undeclared
call_user_func('myClass::$not_exist');


文章来源: Magic __get getter for static properties in PHP