Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
对不起,如果它看起来很简单,但这意味着什么:
array($this, $some_method_string)
在这段代码中:
array_map(array($this, $some_method_string), $some_data)
这是一个有效的回调,在 $this 上调用 $some_method_string 方法:
使用 array_map ,对于 $some_data 的每个元素,调用$this->$some_method_string(currentElement)
$this->$some_method_string(currentElement)
您有一个带有名称的函数,例如function my_function ....
function my_function ...
您必须将该函数的名称作为字符串或字符串变量提供。