[?? ??] Leven [??] [??] Leven

PHP levenshtein() ?? ???

??: ? ??? ??? ?? ?? ??

??: ??int levenshtein (string $str1, string $str2, int $cost_ins, int $cost_rep, int $cost_del)

????:

ParameterDescription
str1 ?? ??? ?? ??? ? ??? ????.
str2 ?? ???? ?? ???? ????.
cost_ins?? ??? ?????.
cost_rep ?? ??? ?????.
cost_del ?? ?? ??

??: ?? ??? ? ??? ??? ??, ??, ?? ? ?? ??? ?? ??? str1? str2? ???? ? ??? ??? ?????. ??.

PHP levenshtein() ?? ?

<?php
$data = "hello";
$res = "world";
echo levenshtein($data,$res);
?>

???? ???

??? ????? ??? "???? ??" ??? ?????

??:

4


<?php
$str1 = "Learning PHP";
$str2 = "is a good choise";
echo levenshtein($str1,$str2);
?>

???? ???

??' ??? ??? ? ??

??:

14