How To Sort An Array in PHP ?

Mostly web developers face the problem of sorting an array in PHP. So to save their time here I am sharing the solution with example. Feel free to join us and you are always welcome to share your thoughts that our readers may find helpful. There are 6 functions to sort an array in PHP – #1. sort() – Sort Array in Ascending Order Below example shows sorted array in ascending order  <?php $name = array(‘sonia’,’monica’,’raj’,’yogita’); sort($name); print_r($name); ?> Output :-  Array (     [0] => monica    …