Skip to content

Instantly share code, notes, and snippets.

@gorkamu
Created November 20, 2016 10:36
Show Gist options
  • Save gorkamu/6abe2d3c7a99b9f96883983ca1aca4dc to your computer and use it in GitHub Desktop.
Save gorkamu/6abe2d3c7a99b9f96883983ca1aca4dc to your computer and use it in GitHub Desktop.
Ejemplo de autocarga de clases en PHP
<?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