Suppose I have this array:
$array = array(\'10\', \'20\', \'30.30\', \'40\', \'50\');
Questions:
What is the fastest/
array_pop($array); // remove the last element array_shift($array); // remove the first element