First of all, I'm typing this on a cellphone. So I'm very sorry if I can't use the coding indentation.
Say I have a custom library named XYZ and it is under /library/.
I can add this to the application.INI as autoloaderNameSpaces [] = "XYZ"
Now I have a class Example.php under this folder /library/XYZ/fld1/fld2/fld3/. I know I can call it by using XYZ_fld1_fld2_fld3_Example.php
But how do I define a shortened namespace, for instance, "Short" so I can call this file by using Short_Example.php
Thanks and sorry again for bad notation.