<?php $words = array('Le', 'le', 'La', 'la', 'Lu', 'lu'); usort( $words, function ($a, $b) { return mb_strlen($b) - mb_strlen($a); } ); print_r($words);
You have javascript disabled. You will not be able to edit any code.