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