Advertisement
Guest User

Srigi

a guest
Mar 29th, 2009
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.13 KB | None | 0 0
  1. <?php
  2.  
  3. function __autoload($class)
  4. {
  5.     $file = str_replace('_', DIRECTORY_SEPARATOR, $class) . '.php';
  6.     include_once $file;
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement