preg_replace_callback 中的闭包问题
该脚本检查某些文本的每一行是否有“FIRST”和“LAST”单词,并尝试用 $temp_names
数组中的条目替换它们。
$temp_names = array('FIRST' => array('John','Jack'),'LAST' => array('Doe','Smith'));
for ($i=0; $i < count($lines); $i++)
{
$lines[$i] = preg_replace_callback("/FIRST|LAST/",
function($matches) use ($temp_names){
return array_shift($temp_names[$matches[0]]); }, $lines[$i]);
}
我在闭包函数中遇到 return array_shift()
问题。它正确返回第一个条目,但该条目保留在数组中。所以每次它都会返回“John”和“Doe”。这是为什么?
谢谢。
This script check every line of some text for "FIRST" and "LAST" words, and trying to replace them by entries in $temp_names
array.
$temp_names = array('FIRST' => array('John','Jack'),'LAST' => array('Doe','Smith'));
for ($i=0; $i < count($lines); $i++)
{
$lines[$i] = preg_replace_callback("/FIRST|LAST/",
function($matches) use ($temp_names){
return array_shift($temp_names[$matches[0]]); }, $lines[$i]);
}
i have problem with return array_shift()
in closure function. It correctly returns the first entry, but the entry stays in array. So every time it return "John" and "Doe". Why is that?
thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了对
$temp_names
数组进行任何更改(例如移动值),您需要通过引用来使用
它,例如In order to have any changes to the
$temp_names
array (such as shifting a value), you need touse
it by reference like