Created
November 20, 2016 10:36
-
-
Save gorkamu/6abe2d3c7a99b9f96883983ca1aca4dc to your computer and use it in GitHub Desktop.
Ejemplo de autocarga de clases en PHP
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
spl_autoload_register(function ($nombre_clase) { | |
include $nombre_clase . '.php'; | |
}); | |
$gorkamu = new Gorkamu(); | |
$ukelele = new Ukelele(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment