mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
7 lines
No EOL
133 B
PHP
Executable file
7 lines
No EOL
133 B
PHP
Executable file
<?php
|
|
|
|
function __autoload($classname) {
|
|
require_once(dirname($_SERVER['PATH_TRANSLATED']).'/'.strtolower($classname).'.inc');
|
|
}
|
|
|
|
?>
|