本文整理匯總了PHP中PMA\libraries\Table::getDbName方法的典型用法代碼示例。如果您正苦於以下問題:PHP Table::getDbName方法的具體用法?PHP Table::getDbName怎麽用?PHP Table::getDbName使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類PMA\libraries\Table
的用法示例。
在下文中一共展示了Table::getDbName方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: unset
* If the table has to be maintained
*/
if (isset($_REQUEST['table_maintenance'])) {
include_once 'sql.php';
unset($result);
}
/**
* Updates table comment, type and options if required
*/
if (isset($_REQUEST['submitoptions'])) {
$_message = '';
$warning_messages = array();
if (isset($_REQUEST['new_name'])) {
// Get original names before rename operation
$oldTable = $pma_table->getName();
$oldDb = $pma_table->getDbName();
if ($pma_table->rename($_REQUEST['new_name'])) {
if (isset($_REQUEST['adjust_privileges']) && !empty($_REQUEST['adjust_privileges'])) {
PMA_AdjustPrivileges_renameOrMoveTable($oldDb, $oldTable, $_REQUEST['db'], $_REQUEST['new_name']);
}
// Reselect the original DB
$GLOBALS['db'] = $oldDb;
$GLOBALS['dbi']->selectDb($oldDb);
$_message .= $pma_table->getLastMessage();
$result = true;
$GLOBALS['table'] = $pma_table->getName();
$reread_info = true;
$reload = true;
} else {
$_message .= $pma_table->getLastError();
$result = false;
示例2: testGetName
/**
* Test getName & getDbName
*
* @return void
*/
public function testGetName()
{
$table = new Table('table1', 'pma_test');
$this->assertEquals("table1", $table->getName());
$this->assertEquals("`table1`", $table->getName(true));
$this->assertEquals("pma_test", $table->getDbName());
$this->assertEquals("`pma_test`", $table->getDbName(true));
}