Had a hard time wording this in google so I figure ill ask here.
I have an array like such:
Array ( [a] => \'a\' [b] => \'b\' [c] => \'c\' )
Try array_values
$arrayWithNumericKeys = array_values($arrayWithRegularKeys);