array_reverse Return an array with elements in reverse order : Array Function : Data Structure PHP Source Code


PHP Source Code » Data Structure » Array Function »

 

array_reverse Return an array with elements in reverse order



<?php
   $states = array("A","B","C");
   print "Before reverse: <br />";
   print_r($states);
   print "<br />After reverse: <br />";
   print_r(array_reverse($states));
?>

           
       



HTML code for linking to this page:

Follow Navioo On Twitter

PHP Source Code

 Navioo Data Structure
» Array Function