Maintainable Code
We maximize maintainability by using frameworks and other tools. We organize our code using frameworks and have a special preference for the Zend Framework as well as the Doctine Object-Relational Mapper (ORM). This enables us to easily add new features at any time in the future without worrying about breaking existing functionality while avoiding costly rewrites of code to fit new features.
Robust Code
Robustness means that the code works even in the face of expected failures (errors) as well as unexpected failures (exceptions). We use Php's built-in exception and try/catch statements to recover from failures. We also use an error handling framework which is freindly to users and logs the error to notify us.
Legacy Php 3 & 4
Yes, its true: there is even Php3 code from 1997 still working. We maintain a special set of test servers to accomodate legacy code. We love to port legacy code to modern Php5 standards, but sometimes just tweaking old code is the most effecient path, even it be a thorny one.