gpt4 book ai didi

php - 将 $this 传递给函数

转载 作者:可可西里 更新时间:2023-11-01 00:15:53 25 4
gpt4 key购买 nike

在 Javascript 中有 call()apply() ,部分,但在 PHP 中解析为 call_user_func()call_user_func_array()

现在,这里的区别在于我们可以通过 call()apply() 传递一个变量,以用作 this功能范围。

我可以用 PHP 实现这样的功能吗?

更新:

在 Javascript 中:

var x = function(passed)
{
return { dis : this, passd : passed };
};

console.log(x(44)); // window, 44

console.log(x.call(25, 44)); // 25, 44

.call() 函数范围内的第一个参数,成为 this

最佳答案

来自PHP manual for Callbacks :

A method of an instantiated object is passed as an array containing an object at index 0 and the method name at index 1.

示例如下:

// Type 3: Object method call
$obj = new MyClass();
call_user_func(array($obj, 'myCallbackMethod'));

关于php - 将 $this 传递给函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10601404/

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