本文整理匯總了PHP中Phalcon\DI\FactoryDefault::getFlash方法的典型用法代碼示例。如果您正苦於以下問題:PHP FactoryDefault::getFlash方法的具體用法?PHP FactoryDefault::getFlash怎麽用?PHP FactoryDefault::getFlash使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Phalcon\DI\FactoryDefault
的用法示例。
在下文中一共展示了FactoryDefault::getFlash方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: function
return $cache;
});
/**
* Main logger file
*/
$di->set('logger', function () {
return new FileLogger(__DIR__ . '/../var/logs/' . date('Y-m-d') . '.log');
}, true);
/**
* Error handler
*/
set_error_handler(function ($errno, $errstr, $errfile, $errline) use($di) {
if (!(error_reporting() & $errno)) {
return;
}
$di->getFlash()->error($errstr);
$di->getLogger()->log($errstr . ' ' . $errfile . ':' . $errline, Logger::ERROR);
return true;
});
/**
* Handle the request
*/
$application = new Application();
$application->setDI($di);
/**
* Register application modules
*/
$application->registerModules(require __DIR__ . '/../common/config/modules.php');
echo $application->handle()->getContent();
} catch (Exception $e) {
echo $e->getMessage();