我需要在对象内部,类内部调用函数。当然,对于“ On The Fly”类方法,我可以使用__call和__set魔术来调用它,但在这种情况下不可以。下面是这种情况的示例。
class mainclass
{
public $v1 = "Hello";
public $fn = null;
function __construct( )
{
$this->fn = (object) [ "fn1" => null,
"fn2" => null,
];
}
public function __call( $name, array $args )
{
return call_user_func_array( $this->$name, $args );
}
public function fn3()
{
echo "This of course works! <br />";
}
}
$main = new mainclass();
$main->fn4 = function()
{
echo "Even this works! <br />";
};
$main->fn->fn1 = function()
{
echo $this->v1 . " World :)";
};
$main->fn3(); // This of course works!
$main->fn4(); // Even this works!
$main->fn->fn1(); //Call to undefined method stdClass::fn1()
可以通过以下方式调用函数“ f1”:$ main-> fn-> fn1()? 如果没有,有没有大的变化的建议?
很遗憾,这不是JavaScript,也不喜欢此类的处理方式,但我必须尝试一下
答案 0 :(得分:1)
在这种情况下,我唯一简单的解决方法是更改匿名类中的对象。在此过程中,您必须使用类似的变量名“ $ _this”将主类的范围存储在内部匿名类上。
class mainclass
{
public $v1 = "Hello";
public $fn = null;
function __construct( )
{
$this->fn = new class( $this)
{
public $_this = null;
public function __construct( $mainscope )
{
$this->_this = &$mainscope;
}
public function __call( $method, array $args )
{
if ( isset( $this->{ $method } ) )
{
return call_user_func_array( $this->$method, $args );
}
elseif ( isset( $this->_this->{ $name } ) )
{
return call_user_func_array( $this->_this->{ $name }, $args);
}
}
public function __set( $name, $value )
{
$this->{ $name } = is_callable( $value ) ? $value->bindTo( $this, $this ) : $value;
}
};
}
public function __call( $method, array $args )
{
return call_user_func_array( $this->{ $method }, $args );
}
public function __set( $name, $value )
{
$this->{ $name } = is_callable( $value ) ? $value->bindTo( $this, $this ) : $value;
}
public function fn3()
{
echo "This of course works! <br />";
}
}
$main = new mainclass();
$main->fn4 = function()
{
echo "Even this works! <br />";
};
$main->fn->fn1 = function()
{
echo $this->_this->v1 . " World :)";
};
$main->fn3(); // This of course works!
$main->fn4(); // Even this works!
$main->fn->fn1(); //Hello World :)
结果并不十分丑陋且易于管理。无论如何,这是目前唯一的选择。
答案 1 :(得分:0)
$main->fn->fn1();
fn1
是尝试使用$main->fn
的属性。
答案 2 :(得分:0)
($main->fn->fn1)();
应该正常工作。但是,您无法在匿名函数中访问$this