Hello!
I'm wondering what is the advantage of using namespace in php ?
Now I have all the classes connected through the autoload and the classes are located in accordance with PSR-0, that is, the class ClassParent_Class_ClassChild is located in /classes/ClassParent/Class/ClassChild.php
If you use the namespace, then only the way I will call the class will change for me: as it is now - ClassParent_Class_ClassChild , or with the namespace \ ClassParent \ Class \ ClassChild (I know about aliases, but I don’t consider it an advantage)
It is possible that I do not understand something. Therefore, I asked a question.