gpt4 book ai didi

附加到 stdObject 并链接的 PHP 闭包函数

转载 作者:可可西里 更新时间:2023-11-01 12:54:37 26 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
Calling closure assigned to object property directly

如果我有这样的类(class):

class test{
function one(){
$this->two()->func(); //Since $test is returned, why can I not call func()?
}

function two(){
$test = (object) array();
$test->func = function(){
echo 'Does this work?';
};
return $test;
}
}

$new = new test;
$new->one(); //Expecting 'Does this work?'

所以我的问题是,当我从函数一调用函数二时,函数二返回 $test 变量,该变量附加了一个 func() 闭包函数。为什么我不能将其称为链式方法?

编辑我只记得这也可以通过为任何需要它的人使用 $this->func->__invoke() 来完成。

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com