| Versionen | |
|---|---|
| drupal6 – drupal7 | db_table_exists($table) |
Check if a table exists.
$table The name of the table.
TRUE if the table exists, and FALSE if the table does not exist.
includes/
<?php
function db_table_exists($table) {
return (bool) db_fetch_object(db_query("SHOW TABLES LIKE '{" . db_escape_table($table) . "}'"));
}
?>
Kommentare
Kommentar hinzufügen