0

$thisphp5.3.x のクラス内の無名関数ではサポートされていません。$this情報/データを無名関数に渡すことができるようにするにはどうすればよいですか? php5.3.x へのフォールバックを作成するにはどうすればよいですか?

class anonymous {

    protected $methods = array();

    public function __construct(array $options)
    {
        $this->methods = $options;
    }

    public function __call($name, $arguments)
    {
        $callable = null;
        if (array_key_exists($name, $this->methods))
            $callable = $this->methods[$name];
        elseif(isset($this->$name))
            $callable = $this->$name;

        if (!is_callable($callable))
            throw new BadMethodCallException("Method {$name} does not exists");

        return call_user_func_array($callable, $arguments);
    }
}

class myclass {

    private $options = array();

    public function __construct($options = array()){
        $this->options = $options;
    }

    public function hello($data = null, $options = array()){

        $methods = new anonymous(array(
            "init" => function($options) { 

                echo "init";

                if(!$options) $options = $this->options;

                return $options; 
            }, 

            "run" => function($options) { 
                echo "run";
                return $options; 
            } 
        ));

        $default = array(
            "method" => "init",
            "options" => array()
        );

        if($data === null) {
            $method = "init";
        } else if (is_string($data)) { 
            $method = $data;
        } else if(is_array($data)) {
            $method = "init";
            $options = $data;
        }

        // Return the requested method.
        return $methods->$method($options);

    }

}

だから、

$myclass = new myclass(array("hello world!"));
var_dump($myclass->hello());

結果、

init Fatal error: Using $this when not in object context in /home/content/95/10799595/html/bin/test/anonymous_4.php 行 41 --> if(!$options) $options = $this->オプション;

php5.4 にある私のローカルホストのように、これを取得する必要があります。

初期化配列 (サイズ=1) 0 => 文字列 'hello world!' (長さ=12)

解決策と提案はありますか?

編集:

public function hello($data = null, $options = array()){

        $self = $this;

        $methods = new anonymous(array(
            "init" => function($options) use($self){ 

                echo "init";

                if(!$options) $options = $self->options;

                return $options; 
            }, 

            "run" => function($options) { 
                echo "run";
                return $options; 
            } 
        ));

        $default = array(
            "method" => "init",
            "options" => array()
        );

        if($data === null) {
            $method = "init";
        } else if (is_string($data)) { 
            $method = $data;
        } else if(is_array($data)) {
            $method = "init";
            $options = $data;
        }

        // Return the requested method.
        return $methods->$method($options);

    }

それでもエラーが発生します。

致命的なエラー: 行 43 の /home/content/95/10799595/html/bin/test/anonymous_4.php のプライベート プロパティ myclass::$options にアクセスできません

4

1 に答える 1