3v4l.org

run code in 500+ PHP versions simultaneously
<?php $testStrings = [ "H3||0", "Hallo", "aloha", "h", "hallo", "hallå", "hel", "helicopter", "hellacious", "hello", "hello y'all", "hello yall", "helów", "hey hello", "hola", "hêllo", "mellow yellow", "try", ]; $needle = 'hello'; usort($testStrings, function($a, $b) use ($needle) { return similar_text($needle, $b) <=> similar_text($needle, $a); }); var_export($testStrings);

preferences:
65.42 ms | 1562 KiB | 5 Q