本文整理汇总了PHP中zotop::boot方法的典型用法代码示例。如果您正苦于以下问题:PHP zotop::boot方法的具体用法?PHP zotop::boot怎么用?PHP zotop::boot使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类zotop
的用法示例。
在下文中一共展示了zotop::boot方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: reboot
/**
* 系统重启
*
* @return string
*/
public static function reboot()
{
zotop::boot();
zotop::run('system.reboot');
}
示例2: reboot
/**
* 系统重新启动
*
* @return string
*/
public static function reboot()
{
zotop::boot();
application::reboot();
}
示例3: define
define('ZOTOP_RUNTIME', ZOTOP . DS . 'runtime');
define('TIME', time());
//加载核心文件
if (file_exists(ZOTOP_RUNTIME . DS . '~runtime.php') && $debug == 'ddd') {
require ZOTOP_RUNTIME . DS . '~runtime.php';
} else {
//加载系统核心
require ZOTOP_LIBRARIES . DS . 'zotop' . DS . 'core' . DS . 'zotop.php';
//注册别名,自动加载系统库文件
zotop::register(include ZOTOP_LIBRARIES . DS . 'zotop' . DS . 'library.php');
zotop::register(include APP_ROOT . DS . 'library.php');
}
//配置的初始化
if (file_exists(ZOTOP_RUNTIME . DS . '~config.php')) {
zotop::config(include ZOTOP_RUNTIME . DS . '~config.php');
} else {
zotop::config(include ZOTOP_CONFIG . DS . 'zotop.php');
zotop::config(include ZOTOP_CONFIG . DS . 'setting.php');
zotop::config('zotop.database', include ZOTOP_CONFIG . DS . 'database.php');
zotop::config('zotop.application', include ZOTOP_CONFIG . DS . 'application.php');
zotop::config('zotop.module', include ZOTOP_CONFIG . DS . 'module.php');
zotop::config('zotop.router', include ZOTOP_CONFIG . DS . 'router.php');
}
//启动底层系统
zotop::boot();
//hook的初始化
if (is_file(ZOTOP_RUNTIME . DS . '~hook.php')) {
zotop::load(ZOTOP_RUNTIME . DS . '~hook.php');
} else {
//生成全局hook文件
}
示例4: build
/**
* 系统重建
*
* @return string
*/
public static function build()
{
zotop::boot();
zotop::reboot();
}