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