03-16-2009, 07:55 PM
|
#6 (permalink)
|
|
is cute and cuddly
Join Date: Mar 2008
Location: Vegas, Baby
Posts: 963
Thanks: 31
|
I always thought it was to resolve ambiguous names, and things like include() and require() were used to avoid loading lots of functions that you do not need.
PHP Code:
$user_registration = new user::register; $new_session = new session::register;
$mybb = new mybb::redirect; $lucid = new lucid::redirect;
Seems namespaces would be the perfect alternative to search and replace?
|
|
|
|