本文整理汇总了PHP中PEAR_Singleton::setErrorHandling方法的典型用法代码示例。如果您正苦于以下问题:PHP PEAR_Singleton::setErrorHandling方法的具体用法?PHP PEAR_Singleton::setErrorHandling怎么用?PHP PEAR_Singleton::setErrorHandling使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PEAR_Singleton
的用法示例。
在下文中一共展示了PEAR_Singleton::setErrorHandling方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Logger
global $logger;
$logger = new Logger();
$timer->logTime("Read Config");
if ($configArray['System']['debug']) {
ini_set('display_errors', true);
error_reporting(E_ALL & ~E_DEPRECATED & ~E_STRICT);
}
//Use output buffering to allow session cookies to have different values
// this can't be determined before session_start is called
ob_start();
initMemcache();
initDatabase();
requireSystemLibraries();
initLocale();
// Sets global error handler for PEAR errors
PEAR_Singleton::setErrorHandling(PEAR_ERROR_CALLBACK, 'handlePEARError');
loadLibraryAndLocation();
loadSearchInformation();
$timer->logTime('Bootstrap');
function initMemcache()
{
//Connect to memcache
/** @var Memcache $memCache */
global $memCache;
global $timer;
global $configArray;
// Set defaults if nothing set in config file.
$host = isset($configArray['Caching']['memcache_host']) ? $configArray['Caching']['memcache_host'] : 'localhost';
$port = isset($configArray['Caching']['memcache_port']) ? $configArray['Caching']['memcache_port'] : 11211;
$timeout = isset($configArray['Caching']['memcache_connection_timeout']) ? $configArray['Caching']['memcache_connection_timeout'] : 1;
// Connect to Memcache: