fork download
  1. <?php
  2. $s = '1 2 7 8';
  3. $a = '1 7 8';
  4. $b = '1 2 8';
  5.  
  6. similar_text($s, $a, $x);
  7. similar_text($s, $b, $y);
  8.  
  9. print_r(array($x, $y));
Success #stdin #stdout 0.01s 20520KB
stdin
Standard input is empty
stdout
Array
(
    [0] => 83.333333333333
    [1] => 83.333333333333
)