Answers for "how to reverse an array but keeping the index in php without function"

PHP
6

php reverse array

$array= array(1,2,3,4,5);
$reversedArray = array_reverse($array);

var_dump($y);
Posted by: Guest on February-20-2020

Code answers related to "how to reverse an array but keeping the index in php without function"

Browse Popular Code Answers by Language