Hi,

  Which is a better approach to use:
  
  1. require_once('path/to/class.php');

  or

  2. if(!class_exists('path/to/class.php')) require('path/to/class.php');

  I have been using the first approach in all my files where I need to 
instantiate a specific class, but I am wondering if the second approach is more 
efficient?  Are there any benefits to using the second approach - such as less 
caching of objects - or do these two statements do the same thing?

Thanks,
Rusty


       
---------------------------------
Be a better friend, newshound, and know-it-all with Yahoo! Mobile.  Try it now.

_______________________________________________

UPHPU mailing list
[email protected]
http://uphpu.org/mailman/listinfo/uphpu
IRC: #uphpu on irc.freenode.net

Reply via email to