Suppose I have this array:
$array = array(\'10\', \'20\', \'30.30\', \'40\', \'50\');
Questions:
What is the fastest/
Check this code:
$arry = array('10', '20', '30.30', '40', '50'); $fruit = array_shift($arry); $fruit = array_pop($arry); print_r($arry);