- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我大大简化了我的代码,但我正在做的是这样的:
class App{
protected $apps = [];
public function __construct($name, $dependencies){
$this->name = $name;
$apps = [];
foreach($dependencies as $dependName){
$apps[$name] = $dependName($this); // returns an instance of App
}
$this->apps = $apps;
}
public function __destruct(){
foreach($this->apps as $dep){
$result = $dep->cleanup($this);
}
}
public function __call($name, $arguments){
if(is_callable([$this, $name])){
return call_user_func_array([$this, $name], $arguments);
}
}
}
function PredefinedApp(){
$app = new App('PredefinedApp', []);
$app->cleanup = function($parent){
// Do some stuff
};
return $app;
}
然后我创建一个这样的应用:
$app = new App('App1', ['PredefinedApp']);
它创建一个 App
实例,然后数组中的项目创建新的应用程序实例,无论其定义是什么,并将它们放入内部应用程序数组。
当我在主应用程序上执行我的析构函数时,它应该在所有子应用程序上调用 cleanup()
。但正在发生的事情是,它正在执行一个无限循环,我不确定为什么。
我确实注意到,如果我注释掉 call_user_func_array
那么 __call()
只会被调用一次,但它不会执行实际的 closure
然后。
我还注意到,如果我在 __call()
中执行 var_dump()
,它会无休止地转储。如果我在 cleanup()
中执行 var_dump()
而不是我得到一个 http 502
错误。
最佳答案
那么让我们通过代码看看这里发生了什么以及为什么:
01| class App{
02|
03| protected $apps = [];
04|
05| public function __construct($name, $dependencies){
06| $this->name = $name;
07|
08| $apps = [];
09| foreach($dependencies as $dependName){
10| $apps[$name] = $dependName($this);
11| }
12| $this->apps = $apps;
13| }
14|
15| public function __destruct(){
16| foreach($this->apps as $dep){
17| $result = $dep->cleanup($this);
18| }
19| }
20|
21| public function __call($name, $arguments){
22| if(is_callable([$this, $name])){
23| return call_user_func_array([$this, $name], $arguments);
24| }
25| }
26| }
27|
28| function PredefinedApp(){
29| $app = new App('PredefinedApp', []);
30|
31| $app->cleanup = function($parent){
32| //Do stuff like: echo "I'm saved";
33| };
34| return $app;
35| }
36|
37| $app = new App('App1', ['PredefinedApp']);
注意:为代码的每一行添加了行号,因此我可以在下面的答案中引用这些行
您使用以下行创建了一个实例:App
:
$app = new App('App1', ['PredefinedApp']); //Line: 37
The constructor gets called:
public function __construct($name, $dependencies){ /* Code here */ } //Line: 05
2.1. Following parameters are passed:
$name
= "App1"
$dependencies
= ["PredefinedApp"]
You assign $name
to $this->name
with this line:
$this->name = $name; //Line: 06
You initialize $apps
with an empty array:
$apps = []; //Line: 08
Now you loop through each element of $dependencies
, which has 1 element here (["PredefinedApp"]
)
In the loop you do the following:
6.1 Assign the return value of a function call to an array index:
$apps[$name] = $dependName($this); //Line: 10//$apps["App1"] = PredefinedApp($this);
You call the function:
PredefinedApp(){ /* Code here */} //Line: 28
Now you create again a new instance of: App
in PredefinedApp()
same as before (Point 2 - 6, expect in the constructor you have other variable values + you don't enter the loop, since the array is empty)
You assign a closure to a class property:
$app->cleanup = function($parent){ //Line: 31 //Do stuff like: echo "I'm saved";};
You return the new created object of App
:
return $app; //Line: 34
Here already the __destruct()
gets called, because when the function ends the refcount
goes to 0 of that zval
and __destruct()
is triggered. But since $this->apps
is empty nothing happens here.
The new created object in that function gets returned and assigned to the array index (Note: We are back from the function to point 6.1):
$apps[$name] = $dependName($this); //Line: 10//$apps["App1"] = PredefinedApp($this);
The constructor ends with assigning the local array to the class property:
$this->apps = $apps; //Line: 12
Now the entire script ends (We have done line: 37)! Which means for the object $app
the __destruct()
is triggered for the same reason as before for $app
in the function PredefinedApp()
Which means you now loop through each element from $this->apps
, which only holds the returned object of the function:
public function __destruct(){ //Line: 15 foreach($this->apps as $dep){ $result = $dep->cleanup($this); }}
Array(
"App1" => App Object
(
[apps:protected] => Array
(
)
[name] => PredefinedApp
[cleanup] => Closure Object
(
[parameter] => Array
(
[$parent] => <required>
)
)
)
)
对于每个元素(这里只有 1 个)你执行:
$result = $dep->cleanup($this); //Line: 17
But you don't call the closure! It tries to call a class method. So there is no cleanup
class method, it's just a class property. Which then means __call()
gets invoked:
public function __call($name, $arguments){ //Line: 21 if(is_callable([$this, $name])){ return call_user_func_array([$this, $name], $arguments); }}
The $arguments
contains itself ($this
). And is_callable([$this, $name])
is TRUE
, because cleanup
is callable as closure.
So now we are getting in the endless stuff, because:
return call_user_func_array([$this, $name], $arguments); //Line: 23
Is executed, which then looks something like this:
return call_user_func_array([$this, "cleanup"], $this);
Which then again tries to call cleanup
as a method and again __call()
is invoked and so on...
So at the end of the entire script the hole disaster starts. But I have some good news, as complicated this sounds, the solution is much simpler!
Just change:
return call_user_func_array([$this, $name], $arguments); //Line: 23
with this:
return call_user_func_array($this->$name, $arguments);
//^^^^^^^^^^^ See here
因为像这样更改它,您不会尝试调用方法,而是调用闭包。所以如果你也把:
echo "I'm saved";
在闭包中分配它时,您将得到输出:
I'm saved
关于php - __destruct() 和 __call() 创建无限循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32158883/
我正在做一个项目,我想尝试“延迟加载”对象。 我已经使用魔术方法 __call($name, $arguments) 设置了一个简单的类。 我想要做的是传递 $arguments ,而不是作为数组,而
php 中的神奇函数 __call() 在类中使用。除了函数之外,还有类似的神奇函数吗?就像 __autoload() 用于函数一样。 例如这样的事情 function __call($name, $
我有这部分代码: class FTPClient { public function __construct() { $args_num=func_num_args();
我正在使用这两种魔术方法 _call 和 _callStatic用于我自己的 ORM/Activerow 之类的实现。它们主要用于捕获某些函数调用:__call 负责 getter 和 setter,
我正在尝试使用魔术函数进行重载 这是我的代码: 类文件1 class vLiteUser{ public function __call($methodname,$argume
我正在尝试使用魔术函数进行重载 这是我的代码: 类文件1 class vLiteUser{ public function __call($methodname,$argume
我正在使用 Mockery 通过 __call() 魔术方法模拟一个类。 问题是我的模拟对象有 __call() 与真实类的签名不同,我得到这个错误: ErrorException: Declarat
静态调用函数时是否可以使用__call魔术方法? 最佳答案 还没有,有建议的(现已有)__callStaticDocs我最后知道的管道中的方法。否则,__call 和其他 __ 魔法方法只能被对象实例
class a { public function f(&$ref1, &$ref2) { $ref1 = 'foo'; $ref2 = 'bar';
我有一个对象,它使用神奇的 __call 方法来调用不同对象的方法。 有时此方法将用于调用需要其一个或多个参数作为引用的方法。 从 php 5.3 开始,调用时按引用传递已被弃用,因此我不能依赖按引用
也许是个奇怪的问题,但是...我有一个神奇的 __call 方法,它返回某些类的实例,或者,如果没有这样的类,则在底层对象中调用相同的方法。 public function __call($name,
我正在处理的项目包含类似于 call_user_func(_array) 的包装器,它在执行前进行一些检查。其中一项检查是 method_exists(如果提供的第一个参数是类的实例,第二个是方法名称
我已经将我的项目文件移动到另一台服务器上,现在我在我的所有页面中都得到了这个,就像我错过了一些配置一样,有人知道我能做什么吗? 我正在使用 Zend Framework 1.11.11 ! 您需要哪些
我有两个模型: class Someinfo(models.Model): name = models.CharField(max_length=200) #something else class
在 PHP 中,即使方法不存在,您也可以使用“神奇”__call 函数检测何时调用该方法。 public function __call($methodName, $args) { // do
我编写了一个相当简单的延迟加载代理类,我过去曾在 http://blog.simonholywell.com/post/2072272471/logging-global-php-objects-la
我在一些 mvc 代码中使用 __call 魔法来生成一个可自动加载的表单框架,但我遇到了一个问题,我希望这里有人可以解决这个问题。 __call 魔法需要两个参数:$methodName 和 $ar
我编写了一个相当简单的延迟加载代理类,我过去曾在 http://blog.simonholywell.com/post/2072272471/logging-global-php-objects-la
假设我有以下代码: local t = {}; setmetatable(t, {__call=print}); t(3, 5, 7) 代替打印: 3 5 7 它打印: table: 0x
我认为一个简单的虚拟示例文件比长单词更能解释 t = {} t.__call = print t.__call(1) t(2) 根据documentation ,因为 t 是一个表,对 t 的调用,如
我是一名优秀的程序员,十分优秀!