Reverse the Order of Elements in Array using PHP October 5, 2020 PHP 0 Comments 385 Views array_reverse function <?php $data = [10, 3, 17, 50, 15]; $data = array_reverse($data); print_r($data);
Leave a Comment
Cancel reply