Var exists
From kwiki
| | This article is written by Konrad, thus using rather nonstandard English:) |
var_exists (DNM Script function)
[edit]
full declaration
bool var_exists ("$some_var_name")
[edit]
return value
[edit]
description
Returns true if given variable name exists. Example:
var $sStr="hello world";
if(var_exists("sStr")) MessageBox("sStr declared");
