I am using this function
usort($arr, function($a, $b) use ($str) {return (strpos($a, $str) - strpos($b, $str));});
to sort the array $arr
. This function works fine on localhost however when I uploaded my site online this error comes up
Parse error: syntax error, unexpected T_FUNCTION
Does anyone know why this is happening?