Function DatabaseConnector->drop_table_if_exists

Definitions

sources/database.php

  • Drop the given table, or if it doesn't exist, silently return.
  • Visibility: public
  • Is abstract?: No
  • Is static?: No
  • Is final?: No

Parameters

Name Type Passed by reference? Variadic? Default Set Range Description
$table mixed No No required parameter N/A N/A The table name(s)

Preview

Code (PHP)

/**
 * Drop the given table, or if it doesn't exist, silently return.
 *
 * @param  mixed $table The table name(s)
 */

public function drop_table_if_exists($table)