本文整理汇总了PHP中Zend_Wildfire_Channel_HttpHeaders::destroyInstance方法的典型用法代码示例。如果您正苦于以下问题:PHP Zend_Wildfire_Channel_HttpHeaders::destroyInstance方法的具体用法?PHP Zend_Wildfire_Channel_HttpHeaders::destroyInstance怎么用?PHP Zend_Wildfire_Channel_HttpHeaders::destroyInstance使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Zend_Wildfire_Channel_HttpHeaders
的用法示例。
在下文中一共展示了Zend_Wildfire_Channel_HttpHeaders::destroyInstance方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: tearDown
public function tearDown()
{
if (extension_loaded('pdo_sqlite')) {
$this->_db->getConnection()->exec('DROP TABLE foo');
}
Zend_Wildfire_Channel_HttpHeaders::destroyInstance();
Zend_Wildfire_Plugin_FirePhp::destroyInstance();
}
示例2: testZf3960
/**
* Test for ZF-3960
*
* Zend_Log_Writer_Firebug should be automatically disabled when
* run from the command line
*/
public function testZf3960()
{
Zend_Wildfire_Channel_HttpHeaders::destroyInstance();
Zend_Wildfire_Plugin_FirePhp::destroyInstance();
$log = new Zend_Log();
$writerFirebug = new Zend_Log_Writer_Firebug();
$log->addWriter($writerFirebug);
$log->log('hi', 2);
}
示例3: tearDown
public function tearDown()
{
if (extension_loaded('pdo_sqlite') && class_exists('Doctrine_Core')) {
Doctrine_Manager::connection()->getDbh()->exec('DROP TABLE accounts');
}
// unregister doctrine namespace
Zend_Loader_Autoloader::getInstance()->unregisterNamespace('Doctrine_');
Zend_Wildfire_Channel_HttpHeaders::destroyInstance();
Zend_Wildfire_Plugin_FirePhp::destroyInstance();
}
示例4: testHttpHeadersChannelSubclass
public function testHttpHeadersChannelSubclass()
{
$firephp = Zend_Wildfire_Channel_HttpHeaders::init('Zend_Wildfire_WildfireTest_HttpHeadersChannel');
$this->assertEquals(get_class($firephp), 'Zend_Wildfire_WildfireTest_HttpHeadersChannel');
Zend_Wildfire_Channel_HttpHeaders::destroyInstance();
try {
Zend_Wildfire_Channel_HttpHeaders::init('Zend_Wildfire_WildfireTest_Request');
$this->fail('Should not be able to initialize');
} catch (Exception $e) {
// success
}
$this->assertNull(Zend_Wildfire_Channel_HttpHeaders::getInstance(true));
try {
Zend_Wildfire_Channel_HttpHeaders::init(array());
$this->fail('Should not be able to initialize');
} catch (Exception $e) {
// success
}
$this->assertNull(Zend_Wildfire_Channel_HttpHeaders::getInstance(true));
}
示例5: tearDown
public function tearDown()
{
$this->_db->getConnection()->exec('DROP TABLE foo');
Zend_Wildfire_Channel_HttpHeaders::destroyInstance();
Zend_Wildfire_Plugin_FirePhp::destroyInstance();
}