Is there any way how to avoid to using so often backslash ?
Now if i'm using namespace and calling something global inside it i have to use backslash:
namespace foo;
$a = new \my\name(); // instantiates "my\name" class
echo \strlen('hi'); // calls function "strlen"
$a = \INI_ALL; // $a is set to the value of constant "INI_ALL"
in that case code inside namespace become really ugly, is there any way how to avoid that situation ???
The example was taken from that url: http://www.php.net/manual/en/language.namespaces.faq.php
But my problem in that, if I need call some built in class from namespace i have to use backslash in front of the name, can I somehow avoid it ?