Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

Evert Pot's Blog:
Taking advantage of PHP namespaces with older code
Feb 01, 2011 @ 16:10:35

Evert Pot has a quick post about a suggestion mentioned at PHPBenelux related to using namespaces with older code.

If you're running PHP 5.3 and you have to use pesky old code that uses long class prefixes (yea, so, pretty much all PHP code out there), you can still make use of namespace features to shorten them.

He includes a quick example that shows the shift from using the traditional Zend_Controller_Action_Helper_AutoComplete_Abstract to an aliasing with the use/as to just reference it as AutoComplete.

tagged: namespace old code zendframework use keyword

Link:


Trending Topics: