PHP Classes

File: classes/autoload.php

Recommend this page to a friend!
  Classes of Istvan Dobrentei   PHP Vim Plugin Updater   classes/autoload.php   Download  
File: classes/autoload.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PHP Vim Plugin Updater
Retrieve plugins for the Vim text editor
Author: By
Last change:
Date: 5 years ago
Size: 126 bytes
 

Contents

Class file image Download
<?
function __autoload($classname)
{
   include_once(
$classname . ".class.php");
}
spl_autoload_register('__autoload');
?>