0

我正在创建一个 findSpellings 函数,它有两个参数 $word 和 $allWords。$allwords 是一个包含单词拼写错误的数组,这些单词听起来可能类似于 $word 变量。我想要完成的是基于 soundex 函数打印出所有与 $word 相似的单词。我无法用单词打印出数组。我的功能如下。任何帮助将不胜感激:

<?php 
$word = 'stupid';

$allwords = array(
    'stupid',
    'stu and pid',
    'hello',
    'foobar',
    'stpid',
    'supid',
    'stuuupid',
    'sstuuupiiid',
);
function findSpellings($word, $allWords){
while(list($id, $str) = each($allwords)){

    $soundex_code = soundex($str);

    if (soundex($word) == $soundex_code){
        //print '"' . $word . '" sounds like ' . $str;
        return $word;
        return $allwords;
    }
    else {
        return false;
    }

}
 }
 print_r(findSpellings($word, $allWords));
?>
4

1 回答 1

1
if (soundex($word) == $soundex_code){
    //print '"' . $word . '" sounds like ' . $str;
    return $word;
    return $allwords;
}

您不能有 2 个返回,第一个返回将退出代码。

你可以这样做:

if (soundex($word) == $soundex_code){
    //print '"' . $word . '" sounds like ' . $str;
    $array = array('word' => $word, 'allWords' => $allWords);
    return $array;
}

然后像这样从 $array 中检索值:

$filledArray = findSpellings($word, $allWords);

echo "You typed".$filledArray['word'][0]."<br/>";
echo "Were you looking for one of the following words?<br/>";

foreach($filledArray['allWords'] as $value)
{
    echo $value;
}
于 2012-05-31T12:50:10.873 回答