Advertisement
Guest User

Untitled

a guest
Mar 27th, 2015
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.39 KB | None | 0 0
  1. prueba carga
  2.  
  3. <?php
  4.  
  5.     class PruebaCarga {
  6.  
  7.         public function __construct()
  8.         {
  9.             echo "clase cargada Magicamente";
  10.         }
  11.     }
  12.  
  13. *************** autoloader*************
  14.  
  15.  
  16. <?php
  17.  
  18.  function miAutoCargador($clase){
  19.         require "class/".$clase.".php";
  20.     }
  21.  
  22.     spl_autoload_register("miAutoCargador");
  23.  
  24. //Probemos si carga
  25.  
  26. $x = new PruebaCarga();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement