Download the PHP package tomaskraus/php-includer without Composer
On this page you can find all versions of the php package tomaskraus/php-includer. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download tomaskraus/php-includer
More information about tomaskraus/php-includer
Files in tomaskraus/php-includer
Package php-includer
Short Description A minimalistic PHP library/framework for include/require
License MIT
Homepage https://github.com/tomaskraus/php-includer
Informations about the package php-includer
php-includer
NOTE: This project is Obsolete. Use the path-utils library - it does one thing and does it good.
A minimalistic PHP library/framework for include/require
features
- application root path
- smart path join
- "bootstrap" file auto include
Installation
Via composer:
, or add this snippet to composer.json
php-includer usage options
- Use as a library: Create a new
PI
(php includer) instance with your application root path as a parameter. - Use as a framework: Include
piLoader.php
in your requested page. It guesses your application root path and creates a new PI instance (a$pi
variable) with that path guessed. It also automatically includes an user-defined "bootstrap" file (pi.bootstrap.php
), an ideal place for your specific initialization piece of code.
application root path guess logic
piLoader.php
assumes that it is in avendor/tomaskraus/php-include
directory.piLoader.php
assumes that avendor
directory is in the application root directory.
php-includer framework examples
Assume we have our php application in /var/www/myApp
. A /var/www/myApp
is our application root path (./
).
example 1: php-includer in the ./index.php
file
example 2: php-includer in the ./login/index.php
file
bootstrap file
You can create a pi.bootstrap.php
file in the application root directory and put whatever you want in it.
That bootstrap file will be automatically included, wherever you include/require piLoader
, regardless of (sub)directory.
A bootstrap file is an ideal place for your specific initialization piece of code.
note: this bootstrap file has nothing to do with the Bootstrap CSS framework
pi.bootstrap.php
file example: assume we have a pi.bootstrap.php
file in /var/www/myapp
directory:
This bootstrap file will be automatically included in both ./index.php
and ./login/index.php
files from previous examples.