Hi out there in Stackland. I was wondering if there was either a function or an easy way to change an associative array into an indexed array.
To elaborate, I\'m using
for multi layered array i use this:
function getIndexedArray($array) {
$arrayTemp = array();
for ($i=0; $i < count($array); $i++) {
$keys = array_keys($array[$i]);
$innerArrayTemp = array();
for ($j=0; $j < count($keys); $j++) {
$innerArrayTemp[$j] = $array[$i][$keys[$j]];
}
array_push($arrayTemp, $innerArrayTemp);
}
return $arrayTemp;
}
it turns this:
(
[0] => Array
(
[OEM] => SG
[MODEL] => Watch Active2
[TASK_ID] => 8
[DEPT_ASSIGNED] => Purchashing
)
)
into this :
[0] => Array
(
[0] => SG
[1] => Watch Active2
[2] => 8
[3] => Purchashing
)