PHP Classes

File: index.php

Recommend this page to a friend!
  Classes of Muhammad Umer Farooq   PHP Autoloader Class   index.php   Download  
File: index.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Autoloader Class
Load classes automatically from a given directory
Author: By
Last change: Apply fixes from StyleCI
Date: 5 years ago
Size: 271 bytes
 

Contents

Class file image Download
<?php

require_once 'core/init.php';

//loading Classes filess
Autoloader::Load('include/classes');

echo
Hello::hello();

echo
'<br>';

echo
Hello::hello2();

echo
'<br>';

$B = new B();

$c = new php\C();

$d = new php\dynamic\D();

$e = new php\dynamic\core\hack\E();