table existing
This function checks if a table under this name is existing. The table is also considered existing if it is empty.
Indirect parameter passing is disabled
1
No. | Type | Description |
---|---|---|
1 input |
string | name of table |
Type | Description |
---|---|
boolean | Result true if existing, false if not existing. |
table create( my table );
echo( table existing ( my table ) );
echo( table existing ( my other table ) );
true
false