I have on PHP array, for example:

$arr = array("hello", "try", "hel", "hey hello");

Now I want to do rearrange of the array which will be based on the most nearly close words between the array and my $search var.

How can I do that?

link|improve this question
you mean arrange the array in a specific order based on an input value entered by the user? – Drewdin Aug 27 '11 at 22:24
Have a look at soundex and metaphone. That are two common ways in PHP to compute the difference between two words. But I have currently no idea how to sort them according to a meaningful metric. Could you explain your sort order a bit more? – coding.mof Aug 27 '11 at 22:26
feedback

3 Answers

You can use levenshtein function

<?php
// input misspelled word
$input = 'helllo';

// array of words to check against
$words  = array('hello' 'try', 'hel', 'hey hello');

// no shortest distance found, yet
$shortest = -1;

// loop through words to find the closest
foreach ($words as $word) {

    // calculate the distance between the input word,
    // and the current word
    $lev = levenshtein($input, $word);

    // check for an exact match
    if ($lev == 0) {

        // closest word is this one (exact match)
        $closest = $word;
        $shortest = 0;

        // break out of the loop; we've found an exact match
        break;
    }

    // if this distance is less than the next found shortest
    // distance, OR if a next shortest word has not yet been found
    if ($lev <= $shortest || $shortest < 0) {
        // set the closest match, and shortest distance
        $closest  = $word;
        $shortest = $lev;
    }
}

echo "Input word: $input\n";
if ($shortest == 0) {
    echo "Exact match found: $closest\n";
} else {
    echo "Did you mean: $closest?\n";
}

?>
link|improve this answer
You beat me to it by a few seconds... – Clement Bellot Aug 27 '11 at 22:23
@Clement and I have searched for this function for a long time! – genesis Aug 27 '11 at 22:24
I just googled it, first result for "algorithm similar worlds". – Clement Bellot Aug 27 '11 at 22:26
@Clement I searched for 'php native function to "did you mean"' – genesis Aug 27 '11 at 22:28
Thanks you! It is amazing how people helps here. But I want resort of the array, no just one result :) – AimOn Aug 27 '11 at 22:30
show 3 more comments
feedback

Another way is to use similar_text function which returns result in percents. See more http://www.php.net/manual/en/function.similar-text.php .

link|improve this answer
feedback

if you want to sort your array, you can do this:

$arr = array("hello", "try", "hel", "hey hello");
$search = "hey"; //your search var

for($i=0; $i<count($arr); $i++) {
   $temp_arr[$i] = levenshtein($search, $arr[$i]);
}
asort($temp_arr);
foreach($temp_arr as $k => $v) {
    $sorted_arr[] = $arr[$k];
}

$sorted_arr should then be in descending order starting with the closest word to your search term.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.