PHP Classes

File: example.php

Recommend this page to a friend!
  Classes of Yerfry Ramirez   PHP OOP Autoloader   example.php   Download  
File: example.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP OOP Autoloader
Autoload classes from directories and extensions
Author: By
Last change:
Date: 9 years ago
Size: 200 bytes
 

Contents

Class file image Download
<?php
require_once 'autoloader/autoloader.php';

$autoloader = new Autoload();
$autoloader->setAutoloadDir(['pluginss', 'fak', 'plugins'], ['php', '.php']);
$autoloader->initialize();

new
test();
?>