本文整理匯總了PHP中Profiler::setup方法的典型用法代碼示例。如果您正苦於以下問題:PHP Profiler::setup方法的具體用法?PHP Profiler::setup怎麽用?PHP Profiler::setup使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Profiler
的用法示例。
在下文中一共展示了Profiler::setup方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: setup
/**
* 係統啟動
*
* @param boolean $auto_execute 是否直接運行
*/
public static function setup($auto_execute = true)
{
static $run = null;
if (null === $run) {
$run = true;
Core::$charset = Core::$config['charset'];
if (!IS_CLI) {
# 輸出powered by信息
$x_powered_by = isset(Core::$config['hide_x_powered_by_header']) && Core::$config['hide_x_powered_by_header'] ? Core::$config['hide_x_powered_by_header'] : false;
if (is_string($x_powered_by)) {
$str = 'X-Powered-By: ' . trim(str_replace(array("\r", "\n"), '', $x_powered_by));
} else {
if (!$x_powered_by) {
$str = 'X-Powered-By: PHP/' . PHP_VERSION . ' MyQEE/' . Core::VERSION . '(' . Core::RELEASE . ')';
} else {
$str = null;
}
}
if ($str) {
header($str);
}
}
if ((IS_CLI || IS_DEBUG) && class_exists('DevException', true)) {
# 注冊腳本
register_shutdown_function(array('DevException', 'shutdown_handler'));
# 捕獲錯誤
set_exception_handler(array('DevException', 'exception_handler'));
set_error_handler(array('DevException', 'error_handler'), error_reporting());
} else {
# 注冊腳本
register_shutdown_function(array('Core', 'shutdown_handler'));
// # 捕獲錯誤
set_exception_handler(array('Core', 'exception_handler'));
set_error_handler(array('Core', 'error_handler'), error_reporting());
}
if (!IS_CLI) {
# 初始化 HttpIO 對象
HttpIO::setup();
}
# 注冊輸出函數
register_shutdown_function(array('Core', '_output_body'));
if (true === IS_SYSTEM_MODE) {
if (false === Core::check_system_request_allow()) {
# 內部請求驗證不通過
Core::show_500('system request hash error');
}
}
if (!defined('URL_ASSETS')) {
/**
* 靜態文件URL地址前綴
*
* @var string
*/
define('URL_ASSETS', rtrim(Core::config('url.assets', Core::url('/assets/')), '/') . '/');
}
if (IS_DEBUG && isset($_REQUEST['debug']) && class_exists('Profiler', true)) {
Profiler::setup();
}
if (IS_DEBUG && !IS_CLI) {
Core::debug()->info('SERVER IP:' . $_SERVER["SERVER_ADDR"] . (function_exists('php_uname') ? '. SERVER NAME:' . php_uname('a') : ''));
if (Core::$project) {
Core::debug()->info('project: ' . Core::$project);
}
if (IS_ADMIN_MODE) {
Core::debug()->info('admin mode');
}
if (IS_REST_MODE) {
Core::debug()->info('RESTFul mode');
}
Core::debug()->group('include path');
foreach (Core::include_path() as $value) {
Core::debug()->log(Core::debug_path($value));
}
Core::debug()->groupEnd();
}
}
/**
* 係統加載完畢時間
*/
define('SYSTEM_LOADED_TIME', microtime(1));
if ($auto_execute) {
Core::run();
}
}
示例2: setup
/**
* 係統啟動
* @param string $pathinfo
*/
public static function setup($auto_run = true)
{
static $run = null;
if (true === $run) {
if ($auto_run) {
Core::run();
}
return;
}
$run = true;
Core::$charset = Core::$config['core']['charset'];
# 注銷Bootstrap的自動加載類
spl_autoload_unregister(array('Bootstrap', 'auto_load'));
# 注冊自動加載類
spl_autoload_register(array('Core', 'auto_load'));
if (!IS_CLI) {
# 輸出powered by信息
header('X-Powered-By: PHP/' . PHP_VERSION . ' MyQEE/' . Core::VERSION);
}
# 檢查Bootstrap版本
if (version_compare(Bootstrap::VERSION, '1.9', '<')) {
Core::show_500('係統Bootstrap版本太低,請先升級Bootstrap。');
exit;
}
Core::debug()->info('當前項目:' . INITIAL_PROJECT_NAME);
if (IS_DEBUG) {
Core::debug()->group('係統加載目錄');
foreach (Core::$include_path as $value) {
Core::debug()->log(Core::debug_path($value));
}
Core::debug()->groupEnd();
}
if ((IS_CLI || IS_DEBUG) && class_exists('ErrException', true)) {
# 注冊腳本
register_shutdown_function(array('ErrException', 'shutdown_handler'));
# 捕獲錯誤
set_exception_handler(array('ErrException', 'exception_handler'));
set_error_handler(array('ErrException', 'error_handler'), error_reporting());
} else {
# 注冊腳本
register_shutdown_function(array('Core', 'shutdown_handler'));
# 捕獲錯誤
set_exception_handler(array('Core', 'exception_handler'));
set_error_handler(array('Core', 'error_handler'), error_reporting());
}
# 初始化 HttpIO 對象
HttpIO::setup();
# 注冊輸出函數
register_shutdown_function(array('Core', 'output'));
# 初始化類庫
Core::ini_library();
if (true === IS_SYSTEM_MODE) {
if (false === Core::check_system_request_allow()) {
# 內部請求驗證不通過
Core::show_500('system request hash error');
}
}
if (IS_DEBUG && isset($_REQUEST['debug']) && class_exists('Profiler', true)) {
Profiler::setup();
}
if ($auto_run) {
Core::run();
}
}