<?php $keyWords = [ 'Привет друзья', 'Привет друзья на', 'на тостере']; usort($keyWords, function ($a, $b) { return strlen($b)-strlen($a);}); var_dump($keyWords);
Standard input is empty
array(3) { [0]=> string(30) "Привет друзья на" [1]=> string(25) "Привет друзья" [2]=> string(19) "на тостере" }
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!