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?
|
I have on PHP array, for example:
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? | |||||
feedback
|
|
You can use levenshtein function
| |||||||||||
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 . | |||
|
feedback
|
|
if you want to sort your array, you can do this:
| |||
|
feedback
|