Problem with spl_autoload_register

See all posts See thread Reply

Re: Problem with spl_autoload_register new!
by Marc, 11 years, 2 months ago
I think it's because the name of the class is class.upload.php
you have to rename it upload.class.php

here is my autoloader : it work with the class renamed
function my_autoloader($classe) {
  include 'class/'.$classe.'.class.php';
}
spl_autoload_register('my_autoloader');
Reply