本文整理汇总了PHP中Pimcore::run方法的典型用法代码示例。如果您正苦于以下问题:PHP Pimcore::run方法的具体用法?PHP Pimcore::run怎么用?PHP Pimcore::run使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Pimcore
的用法示例。
在下文中一共展示了Pimcore::run方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: catch
<?php
/**
* Pimcore
*
* This source file is available under two different licenses:
* - GNU General Public License version 3 (GPLv3)
* - Pimcore Enterprise License (PEL)
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
* @copyright Copyright (c) 2009-2016 pimcore GmbH (http://www.pimcore.org)
* @license http://www.pimcore.org/license GPLv3 and PEL
*/
include_once "pimcore/config/startup.php";
try {
\Pimcore::run();
} catch (Exception $e) {
// handle exceptions, log to file
if (class_exists("Pimcore\\Logger")) {
\Pimcore\Logger::emerg($e);
}
throw $e;
}