Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
870 views

Using spl_autoload() not able to load class

I'm playing around with the SPL autoload functionality and seem to be missing something important as I am currently unable to get it to work. Here is the snippet I am currently using: // ...
5
votes
3answers
1k views

PHP spl_autoload

i dont really get the docs for spl_autoload bool spl_autoload_register ([ callback $autoload_function ] ) from my understanding, it will try to run functions registered when php comes across a ...
3
votes
2answers
924 views

SPL Autoloading best practices

In my include_path on the server-side I have a reference to a pear directory, in '/usr/share/pear/'. Within my applications I include files from a common library, living in '/usr/share/pear/library/' ...
0
votes
2answers
72 views

spl_autoload_register is not initializing autoload stack

I am trying to use the SwiftMailer php library with a program that I wrote. I have been using the spl_autoload_register() function just fine before including this library. However, prior to using ...