PHP Classes

File: SimpleORM/autoload.php

Recommend this page to a friend!
  Classes of Duong Huynh Nghia   Simple PHP ORM   SimpleORM/autoload.php   Download  
File: SimpleORM/autoload.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Simple PHP ORM
Manage objects stored in a database using a ORM
Author: By
Last change:
Date: 6 years ago
Size: 818 bytes
 

Contents

Class file image Download
<?php

function simpleORM_autoload($class)
{
   
$prefix = 'SimpleORM\\';
   
// base directory for the namespace prefix
   
$base_dir = dirname(__FILE__);
   
// does the class use the namespace prefix?
   
$len = strlen($prefix);
    if (
strncmp($prefix, $class, $len) !== 0)
    {
       
// no, move to the next registered autoloader
       
return;
    }
   
// get the relative class name
   
$relative_class = substr($class, $len);

   
// replace the namespace prefix with the base directory, replace namespace
    // separators with directory separators in the relative class name, append
    // with .php
   
$file = $base_dir . DIRECTORY_SEPARATOR. str_replace('\\', '/', $relative_class) . '.php';
   
// if the file exists, require it
   
if (file_exists($file))
    {
        require
$file;
    }
}
spl_autoload_extensions(".php");
spl_autoload_register('simpleORM_autoload');