PHP Classes

File: autoloader.php

Recommend this page to a friend!
  Classes of Stefan Kientzler   XLogger PHP PSR Logger   autoloader.php   Download  
File: autoloader.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: XLogger PHP PSR Logger
Log events to browser console, text and XML files
Author: By
Last change:
Date: 3 years ago
Size: 820 bytes
 

Contents

Class file image Download
<?php
spl_autoload_register
(function($strClassName)
{
   
$strInclude = '';
    if(
substr( $strClassName, 0, 5 ) == 'Table' ) {
       
$strClassName = str_replace('Table', 't', $strClassName);
       
$strInclude = 'common/dbdesign/' . $strClassName . '.php';
    }
    if (
strpos($strClassName, '\\') > 1) {
       
// replace the namespace prefix with the base directory, replace namespace
        // separators with directory separators in the relative class name, append
        // with .php
       
$strInclude = str_replace('\\', DIRECTORY_SEPARATOR, $strClassName) . '.php';
    }

   
// if the file exists, require it
   
if (strlen($strInclude) > 0) {
       
$strInclude = dirname(__FILE__) . '/' . $strInclude;
        if (
file_exists($strInclude)) {
            require
$strInclude;
        }
    }
});