<?php $arr = [456, 8, 1, -9, 'string', true, 0, -65, -162]; usort($arr, function ($a, $b) { if (is_integer($a) && !is_integer($b)) return -1; elseif (!is_integer($a) && is_integer($b)) return 1; else return $b <=> $a; }); var_dump($arr);
You have javascript disabled. You will not be able to edit any code.