方法可以用作 array_map 函数吗
我想做这样的事情:
class Cls { function fun($php) { return 'The rain in Spain.'; } } $ar = array(1,2,3); $instance = new Cls(); print_r(array_map('$instance->fun', $ar)); // ^ this won't work
但是 array_map 的第一个参数应该是函数的名称。 我想避免在 $instance->fun 周围编写包装函数,但这似乎不可能。 真的吗?
I want to do something like this:
class Cls { function fun($php) { return 'The rain in Spain.'; } } $ar = array(1,2,3); $instance = new Cls(); print_r(array_map('$instance->fun', $ar)); // ^ this won't work
but the first argument to array_map is supposed to be the name of the function. I want to avoid writing a wrapper function around $instance->fun, but it doesn't seem like that's possible. Is that true?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
它对我有用如下
It worked for me as follows
是的,您可以对方法进行回调,如下所示:
请参阅回调类型< PHP 手册中的 /a> 了解更多信息
Yes, you can have callbacks to methods, like this:
see the callback type in PHP's manual for more info
您还可以使用
语法。
You can also use
syntax.
其实,你需要了解Callback的定义,请参考下面的代码:
来自: http://php.net/manual/en/language.types.callable.php
Actually, you need to know the definition of Callback, please kindly refer to the following code:
From: http://php.net/manual/en/language.types.callable.php