本文整理汇总了PHP中PHPWS_Core::checkBranch方法的典型用法代码示例。如果您正苦于以下问题:PHP PHPWS_Core::checkBranch方法的具体用法?PHP PHPWS_Core::checkBranch怎么用?PHP PHPWS_Core::checkBranch使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PHPWS_Core
的用法示例。
在下文中一共展示了PHPWS_Core::checkBranch方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: ini_set
ini_set('display_errors', 'On');
error_reporting(E_ALL | E_STRICT);
} else {
// Production - Don't display any errors to the end user
ini_set('display_errors', 'Off');
// Report all fatal types of errors (this allows them to be logged to the web server)
error_reporting(E_ERROR | E_PARSE | E_CORE_ERROR | E_COMPILE_ERROR | E_USER_ERROR | E_RECOVERABLE_ERROR);
}
/*** Include a bunch of function ***/
/*** TODO: See Issue #94 ***/
require_once PHPWS_SOURCE_DIR . 'Global/Functions.php';
/*** Exception Handler ***/
set_exception_handler(array('Error', 'exceptionHandler'));
if (ERRORS_AS_EXCEPTION) {
set_error_handler(array('Error', 'errorHandler'));
}
require_once PHPWS_SOURCE_DIR . 'Global/Implementations.php';
require_once PHPWS_SOURCE_DIR . 'config/core/source.php';
require_once PHPWS_SOURCE_DIR . 'inc/Security.php';
PHPWS_Core::checkOverpost();
PHPWS_Core::setLastPost();
Language::setLocale(Settings::get('Global', 'language'));
if (!PHPWS_Core::checkBranch()) {
throw new Exception('Unknown branch called');
}
function PHPWS_unBootstrap()
{
restore_exception_handler();
restore_error_handler();
spl_autoload_unregister('phpwsAutoload');
}