如何使用RegexIterator :: REPLACE模式?

时间:2009-12-24 06:40:53

标签: php spl

我的代码出了什么问题:

$i = new RegexIterator(
  new ArrayIterator(array(
    'test1'=>'test888', 
    'test2'=>'what?', 
    'test3'=>'test999')),
  '/^test(.*)/',
  RegexIterator::REPLACE);

foreach ($i as $name=>$value)
  echo $name . '=>' . $value . "\n";

迭代器是空的,为什么?谢谢你的帮助!

3 个答案:

答案 0 :(得分:1)

如果省略操作模式(新RegexIterator语句中的第3个参数),您将获得匹配的值,如下所示:

$array = array('test1' => 'test888', 'test2' => 'what?', 'test3' => 'test999');
$pattern = '/^test(.*)/';

echo '<pre>';
echo "DEFAULT\n";
$arrayIterator = new ArrayIterator($array);
$regexIterator = new RegexIterator($arrayIterator, $pattern);
foreach ($regexIterator as $value) {echo "$value\n";}
echo '</pre>';

您可以根据自己的需要使用不同的操作模式。请阅读setMode文档:http://www.php.net/manual/en/regexiterator.setmode.php

答案 1 :(得分:0)

如上所述,这是PHP中的一个错误。我向php.net报告了它:http://bugs.php.net/bug.php?id=50579

答案 2 :(得分:0)

考虑以下代码

$mixedArray=array(
    'tester2',
    'tes1',
    'bad4',
    '2good2',
    '2birds',
    'birds8',
    '8young girls',
    '6 young boys'
);


$ait=new ArrayIterator($mixedArray);
$regexIt=new RegexIterator($ait,'/^(\d+)(\w+)/', RegexIterator::REPLACE);
$regexIt->replacement='$2:$1';

foreach($regexIt as $key=>$value){
    echo $value."<br>";
}

<强>输出

good2:2
birds:2
young:8 girls