<!DOCTYPE html>
<html>
<body>

<?php
$a=array("Dog","Cat","Horse","Bear","Zebra");
array_multisort($a);
print_r($a);
?>


</body>
</html>