Update documentation

This commit is contained in:
Marcus Boerger 2003-12-04 19:39:46 +00:00
parent 2216eb4511
commit f679b5c935
9 changed files with 327 additions and 349 deletions

7
ext/spl/examples/autoload.inc Executable file
View file

@ -0,0 +1,7 @@
<?php
function __autoload($file) {
require_once(dirname($_SERVER['PATH_TRANSLATED']).'/'.strtolower($file).'.inc');
}
?>