Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
谁能告诉我zend 框架中的Bootstrap.php和index.php文件有什么区别?
在index.php你只设置Zend_Application运行。这意味着include_paths、require_oncesapplication.ini等。
index.php
Zend_Application
include_path
require_once
application.ini
在Bootstrap.php您已经“内部”运行的应用程序中。这是设置更具体的资源(数据库、缓存、插件...)的地方。
Bootstrap.php
index.php用于设置路径和配置您的环境。
Bootstrap.php用于加载特定于应用程序的内容,例如数据库、语言环境或其他内容。