Core Function IsIndexSet
From Sputnik Wiki
(Difference between revisions)
Line 26: | Line 26: | ||
This cannot be used to check if a hash (dictionary) key exists for that use IsKeySet() instead. | This cannot be used to check if a hash (dictionary) key exists for that use IsKeySet() instead. | ||
+ | |||
+ | Alias' for this command | ||
+ | <pre> | ||
+ | IsKeySet() | ||
+ | </pre> | ||
=== Example === | === Example === |
Revision as of 12:49, 28 January 2013
IndexSet( <array>, <index> )
Contents |
Description
Check if an element exist at a given index ID within an array.
Parameters
array
The array to use.
index
The index to check (starts at 0).
Return Value
Success - Returns 1.
Failure - Returns 0.
Remarks
This cannot be used to check if a hash (dictionary) key exists for that use IsKeySet() instead.
Alias' for this command
IsKeySet()
Example
$a = array("One", "Two"); println( "Index 0 is : " . (IsIndexSet($a, 0) ? "SET" : "NOT SET") ); println( "Index 1 is : " . (IsIndexSet($a, 1) ? "SET" : "NOT SET") ); println( "Index 2 is : " . (IsIndexSet($a, 2) ? "SET" : "NOT SET") ); // Delete an index and do it again unset($a[1]); println( "Index 0 is : " . (IsIndexSet($a, 0) ? "SET" : "NOT SET") ); println( "Index 1 is : " . (IsIndexSet($a, 1) ? "SET" : "NOT SET") ); println( "Index 2 is : " . (IsIndexSet($a, 2) ? "SET" : "NOT SET") );