gpt4 book ai didi

php - 如何使用对象方法作为回调函数

转载 作者:可可西里 更新时间:2023-10-31 22:10:45 25 4
gpt4 key购买 nike

我在单例类中有以下方法

private function encode($inp)
{
if (is_array($inp) {
return array_map('$this->encode', $inp);
} else if is_scalar($inp) {
return str_replace('%7E', rawurlencode($inp));
} else {
return '';
}
}

这作为一个普通函数工作得很好

function encode($inp)
{
if (is_array($inp) {
return array_map('encode', $inp);
} else if is_scalar($inp) {
return str_replace('%7E', rawurlencode($inp));
} else {
return '';
}
}

在类中使用时出现以下错误:

PHP Warning: array_map(): The first argument, '$this->rfc_encode', should be either NULL or a valid callback

谁能帮我解决这个问题。

最佳答案

来自 PHP Manual on 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.

那么试试

return array_map(array($this, 'encode'), $inp);

关于php - 如何使用对象方法作为回调函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3350762/

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