I have an array:
array('something' => 'like this', 'something' => 'like this', 'something' => 'like this');
I would like to replace it (as quickly as possible using a simple built-in function) as follows:
array(0 => 'like this', 1 => 'like this', 2 => 'like this');
Is it possible to use any built-in php array functions?
source
share