Core Function Shift

From Sputnik Wiki
Revision as of 12:20, 29 November 2011 by UberFoX (Talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
Shift( <array> )

Contents

Description

Delete the last item in an array.

Parameters

array

The array to use.

Return Value

Success - Returns the shifted object.

Failure - Returns 0.

Remarks

None

Example

$array = array ( "One", "Two", "Three" );
 
Shift($array);
 
$i = 0;
Foreach ( $array as $i )
{
	println("Element ($i) is: " . $i);
	$i++;
}
Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox