开发者

PHP: bootstrap.php

What is bootstrap.php? I got a project that in the .htaccess 开发者_StackOverflowreads SetEnv AE_BOOTSTRAP /full/path/to/_app/bootstrap.php

However, that file does not exist in the project... Is this something from PHP?


No, bootstrapping is not a part of PHP. Rather it is a file that is generally ran at installation time, or with PHP for every request, that takes care of making sure everything is included and general startup procedures are taken care of.


You can find more information about BootStrapping here .

It's not a PHP feature but just some code that is executed at the start.

With regards to computer technology, “bootstrap PHP code” means creating a bootstrapper that handles all the dynamic requests coming to a server and apply the true MVC (Model View Component) framework so that in future you can change the functionality for each unique component or application without changing the entire code or application.

This file should be on the server otherwise, nothing can be assigned via code...


bootstrap.php is just a conventional name for a PHP file that loads up your project environment. If you have a .htaccess that's pointing to one that doesn't exist, that sounds like garbage left over from a dead software installation.


That's probably a line from a previous (or current) php framework, which would use that constant to define the path to their bootstrapping script.


A Bootstrap is a script consisting of multiple clasees definitions in a single file, to reduce overhead of large variety of classes.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜