Skip to content

Instantly share code, notes, and snippets.

@tanrax
Created December 28, 2013 16:38
Show Gist options
  • Save tanrax/8161358 to your computer and use it in GitHub Desktop.
Save tanrax/8161358 to your computer and use it in GitHub Desktop.
PHP: Cargador de librerías
<?php
/** Autocargador de librerias **/
spl_autoload_register('autocargador');
function autocargador($insNom)
{
include $insNom . '.class.php';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment