1. Go to this page and download the library: Download awps/loader 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/ */
awps / loader example snippets
composer
Awps\Loader::loadClasses( $path, $namespace );
Awps\Loader::loadFiles( $path, $pattern );
// Autoload classes from `inc` folder and set the namespace to `Awesome`
Awps\Loader::loadClasses( __DIR__ . 'inc', 'Awesome' );
// Now you can initialize a class. For example:
new Awesome\Something();
// -------------------------------------------------------
// Include all php files from `functions`
Awps\Loader::loadFiles( __DIR__ . 'functions', 'component-' );
// This one will
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.