int GlobalVariablesDeleteAll(string prefix_name=NULL)
Deletes global variables. If the name prefix is not specified, all global variables will be deleted. Otherwise, only those variables will be deleted, the names of which begin with the specified prefix. The function returns the count of deleted variables.
グローバル変数を削除します。もし、プレフィックスが指定されていない場合は、グローバル変数がすべて削除されます。それ以外の場合は、指定したプレフィックスで始まる名前の変数だけが削除されます。この関数は、削除された変数の数を返します。
Parameters:
パラメータ:
1 2 | <b>prefix_name</b> - Name prefix of the global variables to be deleted. 削除するグローバル変数の名前のプレフィックス。 |
Sample:
サンプル:
1 | Print(GlobalVariablesDeleteAll("test_")," test globals deleted"); |