Core Function Pop
From Sputnik Wiki
				
				
				
				
																
				
				
								
				Pop( <array> )
Contents | 
Description
Delete the last item in an array.
Parameters
array
The array to use.
Return Value
Success - Returns the popped object.
Failure - Returns empty string.
Remarks
None
Example
$array = array ( "One", "Two", "Three" ); Pop($array); $i = 0; Foreach ( $array as $i ) { println("Element ($i) is: " . $i); $i++; }