0
我一直在試圖弄清楚這一點,但是Zend項目中application.ini和bootstrap文件之間的確切區別是什麼?瞭解application.ini和引導
兩者似乎都被用來添加資源,幫手等等。但我不太明白在bootstrap中添加什麼或通過application.ini添加它們之間的區別。兩種方法對對方有什麼好處?
有沒有人可以向我解釋這個?
我一直在試圖弄清楚這一點,但是Zend項目中application.ini和bootstrap文件之間的確切區別是什麼?瞭解application.ini和引導
兩者似乎都被用來添加資源,幫手等等。但我不太明白在bootstrap中添加什麼或通過application.ini添加它們之間的區別。兩種方法對對方有什麼好處?
有沒有人可以向我解釋這個?
application.ini
中列出的配置驅動內置(以及任何第三方或定製內置)application resource plugins。您受限於資源插件可以對您的配置設置進行的操作。
Bootstrap類中的任何代碼都旨在提供更精細的自定義。在這裏你可以做任何你能夠放入PHP代碼的東西。
可能的重複[瞭解從application.ini中的Zend Framework Bootstrap過程和資源加載](http://stackoverflow.com/questions/9366930/understanding-the-zend-framework-bootstrap-process-and-resource-從應用程序加載) –
並參見http://stackoverflow.com/questions/11002346/how-bootstrap-works-in-general-and-particularly-in-zend-framework/11002906 – drew010