PHP Classes

File: autoloader.php

Recommend this page to a friend!
  Classes of Stefan Kientzler   PHP Google Calendar Add Event   autoloader.php   Download  
File: autoloader.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PHP Google Calendar Add Event
Create 'Add to my google calendar' link for a page
Author: By
Last change:
Date: 3 years 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;
        }
    }
});