0

有没有办法在字符串中找到子字符串的所有实例。这是我到目前为止所拥有的,但似乎当我搜索“ed”子字符串时,它会在找到第一个子字符串时停止查找。因此,当我尝试改变结尾时,“对冲”这个词不受影响。

<?php

$wordList2 = array('kissed','hoped','learned','wanted','sounded', 'hedged');

for ($i = 0; $i<sizeof($wordList2);$i++){
    $wrongAnswers2[$wordList2[$i]] = array();
}

for ($i = 0; $i < sizeof($wordList2); $i++){

    if(strpos($wordList2[$i], 'ed')===(strlen($wordList2[$i])-2)) {


    $pos = strpos($wordList2[$i], 'ed');
    if(
    substr($wordList2[$i], -3, 1) ==='p' || 
    substr($wordList2[$i], -3, 1) ==='f' ||
    substr($wordList2[$i], -3, 1) ==='s' ||
    substr($wordList2[$i], -3, 1) ==='k' ||
    substr($wordList2[$i], -3, 1) ==='h' 
    ){
        $replacement = substr_replace($wordList2[$i], 't', $pos,2);
        array_push($wrongAnswers2[$wordList2[$i]],$replacement);
    } else if   
    (
    substr($wordList2[$i], -3, 1) ==='b' || 
    substr($wordList2[$i], -3, 1) ==='v' ||
    substr($wordList2[$i], -3, 1) ==='z' ||
    substr($wordList2[$i], -3, 1) ==='g' ||
    substr($wordList2[$i], -3, 1) ==='n' 
    ){
        $replacement = substr_replace($wordList2[$i], 'd', $pos,2);
        array_push($wrongAnswers2[$wordList2[$i]],$replacement);
    } else if   
    (
    substr($wordList2[$i], -3, 1) ==='d' || 
    substr($wordList2[$i], -3, 1) ==='t' 
    ){
        $replacement = substr_replace($wordList2[$i], 'id', $pos);
        array_push($wrongAnswers2[$wordList2[$i]],$replacement);
    }

} 
}
?>

这是我得到的输出。我基本上想要一种让程序改变“对冲”结尾的方法。谢谢。

   Array
(
[kissed] => Array
    (
        [0] => kisst
    )

[hoped] => Array
    (
        [0] => hopt
    )

[learned] => Array
    (
        [0] => learnd
    )

[wanted] => Array
    (
        [0] => wantid
    )

[sounded] => Array
    (
        [0] => soundid
    )

[hedged] => Array
    (
    )

)

4

2 回答 2

1

对于您的特定要求,您可以使用 strrpos 而不是 strpos - 它是同一件事,除了它找到子字符串的最后一次出现而不是第一次出现。

于 2012-08-19T16:01:04.207 回答
0

我只是更改了打开 IF 条件并调整了 $pos 变量:

if((strlen($wordList2[$i]) - strrpos($wordList2[$i], 'ed'))===2) {


    $pos = strrpos($wordList2[$i], 'ed');

...etc.

现在工作得更好了,谢谢 moopet。

于 2012-08-19T16:18:24.947 回答