Core Function isVarUInt64
From Sputnik Wiki
(Difference between revisions)
UberFoX (Talk | contribs)
(Created page with "<pre> isVarUInt64( $variable ) </pre> === Description === Checks if a variable is an unsigned 64-bit integer type. === Parameters === ==== variable ==== The variable to chec...")
Newer edit →
(Created page with "<pre> isVarUInt64( $variable ) </pre> === Description === Checks if a variable is an unsigned 64-bit integer type. === Parameters === ==== variable ==== The variable to chec...")
Newer edit →
Revision as of 11:44, 2 December 2011
isVarUInt64( $variable )
Contents |
Description
Checks if a variable is an unsigned 64-bit integer type.
Parameters
variable
The variable to check.
Return Value
Success: Returns 1.
Failure: Returns 0.
Remarks
None.
Example
$var1 = "check me"; println( "Is it?: " . isVarUInt64($var1) );