本文整理汇总了PHP中MDB2::disconnect方法的典型用法代码示例。如果您正苦于以下问题:PHP MDB2::disconnect方法的具体用法?PHP MDB2::disconnect怎么用?PHP MDB2::disconnect使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MDB2
的用法示例。
在下文中一共展示了MDB2::disconnect方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __destruct
/**
* (non-PHPdoc)
* @see debugObject::__destruct()
*/
public function __destruct()
{
while (!empty($this->_chronotrigger)) {
$this->chrono_stop();
}
$this->_mdb2->disconnect();
unset($this->_mdb2);
parent::__destruct();
}
示例2: Disconnect
public function Disconnect()
{
$this->_db->disconnect();
$this->_db = null;
$this->_connected = false;
}
示例3: testTearDown
/**
* Tears down the test environment after the test is run.
*
* Should remove the testuser created during testSetup and all its data.
*/
public function testTearDown()
{
$this->_cleanUser($this->_user);
$this->_db->disconnect();
}