<?php
/**
* This makes our life easier when dealing with paths. Everything is relative
* to the application root now.
*/
chdir(dirname(__DIR__)); // 切换当前目录为活动目录
// Decline static file requests back to the PHP built-in webserver
if (php_sapi_name() === 'cli-server' && is_file(__DIR__ . parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH))) {
// 拦截对于当前目录下其他静态文件的访问
return false;
} // Setup autoloading
require 'init_autoloader.php'; // 初始化加载
// Run the application!
Zend\Mvc\Application::init(require 'config/application.config.php')->run(); // 初始化完成应用程序框架开始运行
总结:index.php 是安装后原生的版本,无任何修改,内容很简单,自动加载给应用程序框架做运行前的准备工作,然后再 利用 Application:init() 方式来初始化化,init 的参数是引入了配置目录里面的 application.config.php 应用配置文件,初始化完成后调用 run() 方法运行框架。