array_pop notice
array_pop was generating an E_NOTICE because it wants the array passed to it by reference. current()
does the same thing but wants an array by value.
array_pop was generating an E_NOTICE because it wants the array passed to it by reference. current()
does the same thing but wants an array by value.