php change an associative array into indexed array

Solutions on MaxInterview for php change an associative array into indexed array by the best coders in the world

showing results for - "php change an associative array into indexed array"
Raphael
07 Apr 2016
1$array = array_values($array);
2