fork download
  1. <?php
  2.  
  3. $keyWords = [
  4. 'Привет друзья', 'Привет друзья на', 'на тостере'
  5. ];
  6.  
  7. usort($keyWords, function ($a, $b) {
  8. return strlen($b)-strlen($a);
  9. });
  10.  
  11. var_dump($keyWords);
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
array(3) {
  [0]=>
  string(30) "Привет друзья на"
  [1]=>
  string(25) "Привет друзья"
  [2]=>
  string(19) "на тостере"
}