PHP code example of varunsridharan / php-autoloader
1. Go to this page and download the library: Download varunsridharan/php-autoloader library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
varunsridharan / php-autoloader example snippets
array(
/**
* An Array of Class Namespace to Exclude While Checking for current namespace.
* Eg
* Main Namespace \Testing\Core
* Exclude \Testing\Core\Abstracts
*/
'exclude' => false,
/**
* Custom Option To Quickly Remap A Class File.
* If any class added then it will not search.
* instead it gets the location from here and loads it.
* An Array of class and its file location
*/
'mapping' => array(),
/**
* Set To True / False.
*/
'debug' => false,
);
$class1 = new \varun\class1\class1(); // This file is autoloaded based on the namespace
$class2 = new \varun\class1\class2(); // This file is autoloaded based on the namespace
$class3 = new \varun\class1\class3(); // This file is loaded using the data from remap array
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.