PHP Classes

File: autoloader.php

Recommend this page to a friend!
  Classes of Stefan Kientzler   PHP vCard Library   autoloader.php   Download  
File: autoloader.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PHP vCard Library
Import and export contact lists in vCard format
Author: By
Last change: Update of autoloader.php
Date: 1 year ago
Size: 630 bytes
 

Contents

Class file image Download
<?php
spl_autoload_register
(function($strTableClass) {
   
$strInclude = '';
    if (
strpos($strTableClass, '\\') > 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, $strTableClass) . '.php';
    }

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