Cep Posted January 29, 2008 Share Posted January 29, 2008 Hi, I understand to a degree the purpose of using the __autoload magic method but what advantage does it have over a single include file containing all the classes with require_once? From what I can gleen, all it does is include the class file if the current class requires it but cannot find it in the current scope. Is the only advantage to using this magic method, so that I can take out a commonly used class in one project and place it in another project where it can directly reference any needed classes? I am just trying to figure out why you would need to use this method over the single global include file? Quote Link to comment https://forums.phpfreaks.com/topic/88361-solved-__autoload-or-a-single-global-include-file/ Share on other sites More sharing options...
trq Posted January 29, 2008 Share Posted January 29, 2008 Using the __autoload approuch means that classes are only actually required when they are needed. Your global include file would include all files regardless if they where used or not. Quote Link to comment https://forums.phpfreaks.com/topic/88361-solved-__autoload-or-a-single-global-include-file/#findComment-452230 Share on other sites More sharing options...
Cep Posted January 29, 2008 Author Share Posted January 29, 2008 Ah so its also a performance issue then in some respects, thanks thorpe! Quote Link to comment https://forums.phpfreaks.com/topic/88361-solved-__autoload-or-a-single-global-include-file/#findComment-452234 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.