首页 > 代码库 > ZendFramework2 源码分析 index.php
ZendFramework2 源码分析 index.php
1 <?php 2 /** 3 * This makes our life easier when dealing with paths. Everything is relative 4 * to the application root now. 5 */ 6 chdir(dirname(__DIR__)); // 切换当前目录为活动目录 7 8 // Decline static file requests back to the PHP built-in webserver 9 if (php_sapi_name() === ‘cli-server‘ && is_file(__DIR__ . parse_url($_SERVER[‘REQUEST_URI‘], PHP_URL_PATH))) {
// 拦截对于当前目录下其他静态文件的访问10 return false;11 }12 13 // Setup autoloading14 require ‘init_autoloader.php‘; // 初始化加载15 16 // Run the application!17 Zend\Mvc\Application::init(require ‘config/application.config.php‘)->run(); // 初始化完成应用程序框架开始运行
总结:index.php 是安装后原生的版本,无任何修改,内容很简单,自动加载给应用程序框架做运行前的准备工作,然后再 利用 Application:init() 方式来初始化化,init 的参数是引入了配置目录里面的 application.config.php 应用配置文件,初始化完成后调用 run() 方法运行框架。
ZendFramework2 源码分析 index.php
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。