Matthew Weier O’Phinney announced Zend’s naming scheme for the Zend Framework from the point where PHP 5.3 namespaces are used.
The issue is, that the PHP parser does not allow class Abstract , neither interface Interface as both “abstract” and “interface” are reserved keywords.
So Zend suggests prefixing interfaces with “I” and abstract classes with “A”. Hungarian notation for classes and interfaces.
One of...
Post new comment