Why do I get this "Parse error: syntax error, unexpected T_FUNCTION in upload2.php on line 5" from this snippet:
<?php
$title = "Click to see the picture in full size";
$images = glob('./images/*.*', GLOB_BRACE);
usort($images, function($a, $b) {
return filemtime($a) < filemtime($b);
});
foreach($images as $image) {
echo '<a href="'.$image.'"><img src="'.$image.'" width="430px" height="350px" title="'.$title.'"></a>';
}
?>
It is working fine when I am using XAMPP localhost. Thanks in advance!