preg_replace_callback() 中的第二个参数
我对 PHP 中的 preg_replace_callback()
函数有疑问。我想调用一个需要两个参数的函数。
private function parse_variable_array($a, $b)
{
return $a * $b;
}
在互联网上我找到了这段代码:
preg_replace_callback("/regexcode/", call_user_func_array(array($this, "foo"), array($foo, $bar)), $subject);
但在函数 foo 中,我无法使用 preg_replace_callback 中常见的 matches 数组,
我希望你能帮助我!
I have a problem with the function preg_replace_callback()
in PHP. I want to call a function which requires two parameters.
private function parse_variable_array($a, $b)
{
return $a * $b;
}
On the internet I found this piece of code:
preg_replace_callback("/regexcode/", call_user_func_array(array($this, "foo"), array($foo, $bar)), $subject);
But in the function foo I cannot use the matches array that is usual with a preg_replace_callback
I hope you can help me!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
回调按原样调用,您不能向其传递其他参数。不过,您可以制作一个简单的包装函数。对于 PHP 5.3+,可以使用匿名函数轻松完成此操作:
对于较旧的 PHP 版本,创建一个常规函数,将其作为回调传递。
The callback is called as is, you cannot pass additional parameters to it. You can make a simple wrapper function though. For PHP 5.3+, that's easily done with anonymous functions:
For older PHP versions, make a regular function that you pass as usual as the callback.