php找到类似的短语

时间:2011-12-21 20:03:13

标签: php string loops

我正在尝试在php中编写脚本,在两段文本中找到相似的短语。我问过这个Question

  1. the cat is on the roof
  2. a man is on the stage

  A1 = [the, cat, is, on, the, roof]
  A2 = [a, man, is, on, the, stage]

  [the]: no match
  [cat]: no match
  [is]: match
  [is, on]: match
  [is, on, the]: match
  [is, on, the, roof]: no match
  [on]: match
  [on, the]: match
  [on, the, roof]: no match
  [the]: match
  [the, roof]: no match
  [roof]: no match
  -end-

我的代码如下。

<?php

echo match(explode(' ',$text1), explode(' ',$text2));

function match($old, $new){
$arr;
    foreach($old as $key=>$oldword) {   
        foreach($new as $key2=>$newword) {

            if($old[$key] == $new[$key2]) { 
                array_push($arr,$old[$key]);
                echo '<span style="color:red;">'.$old[$key].' </span>';
                }
                else {
                    echo $old[$key].' ';
                }
        }
    }
}

我得到以下输出

enter image description here

为什么单词会重复?

2 个答案:

答案 0 :(得分:1)

对于您当前的问题,答案是因为您使用嵌套的for循环。对于另一个问题,答案实际上是正确的:)。

答案 1 :(得分:1)

这是因为新数组的foreach循环正在为旧数组的循环的每次迭代运行。