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