Guest User

Untitled

a guest
Jun 22nd, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.41 KB | None | 0 0
  1. <?php
  2.  
  3. /*
  4.  * To change this template, choose Tools | Templates
  5.  * and open the template in the editor.
  6.  */
  7.  
  8. /**
  9.  *
  10.  *
  11.  * @author NoonDream.som
  12.  */
  13.  
  14. namespace Sol ;
  15.  
  16. class Sol
  17. {
  18.  
  19.     public static function autoload( $startPath , $className )
  20.     {
  21.         $includPath = $startPath . str_replace ( "\\" , DIRECTORY_SEPARATOR , $className ) . ".php" ;
  22.         include_once $includPath ;
  23.     }
  24.  
  25. }
Add Comment
Please, Sign In to add comment