php Programming Glossary: maintainable
Error logging, in a smooth way http://stackoverflow.com/questions/10331084/error-logging-in-a-smooth-way control to do what you like with the errors in a single maintainable part of your code. The error logging can now be changed quickly..
Which PHP frameworks are used by corporations? http://stackoverflow.com/questions/1082059/which-php-frameworks-are-used-by-corporations first programming language don't learn the essentials of maintainable software development and often don't really know how to write..
Are global variables in PHP considered bad practice? If so, why? http://stackoverflow.com/questions/1557787/are-global-variables-in-php-considered-bad-practice-if-so-why the amount of code you need to write or makes it more maintainable and easier to understand not because you think you should. ..
Nested or Inner Class in PHP http://stackoverflow.com/questions/16424257/nested-or-inner-class-in-php world. Nested classes can lead to more readable and maintainable code. A nested class usually relates to it's parent class and..
Reference: What is variable scope, which variables are accessible from where and what are “undefined variable” errors? http://stackoverflow.com/questions/16959576/reference-what-is-variable-scope-which-variables-are-accessible-from-where-and initialized Do you have to check every time This is not maintainable. Which brings us to... Crossing scope boundaries The right way..
What is better in a foreach loop… using the & symbol or reassigning based on key? http://stackoverflow.com/questions/17459521/what-is-better-in-a-foreach-loop-using-the-symbol-or-reassigning-based-on-k considered better to go for safer more reliable and more maintainable code 'Debugging is twice as hard as writing the code in the..
Seriously, should I write bad PHP code? [closed] http://stackoverflow.com/questions/187594/seriously-should-i-write-bad-php-code you should consider the trade off in speed which writing maintainable code brings along. IMHO this trade off is rather small because..
Open Source Virgin - What steps to take? [closed] http://stackoverflow.com/questions/188495/open-source-virgin-what-steps-to-take
When do you know it's time to rewrite an application http://stackoverflow.com/questions/21857/when-do-you-know-its-time-to-rewrite-an-application method etc. to make chunks of code more readable and more maintainable. Or making big improvements using dedicated budgets still working..
Parent Object in php http://stackoverflow.com/questions/2423396/parent-object-in-php Using Dependency Injection will make your code more maintainable. In your UseCase you'd pass parent to B when creating B parent..
Cheking and error on a PHP function http://stackoverflow.com/questions/2702744/cheking-and-error-on-a-php-function handler handle this after us Of course this is not very maintainable you have a global variable error_occurred there and this is..
PHP htmlentities() on input before DB insert, instead of on output http://stackoverflow.com/questions/3023728/php-htmlentities-on-input-before-db-insert-instead-of-on-output question from @Matt In general to keep things readable and maintainable try to store it as close to the original unfiltered content.. data is very large. In general to keep things readable and maintainable try to store it as close to the original unfiltered content..
How to make a PHP extension http://stackoverflow.com/questions/3632160/how-to-make-a-php-extension time. You're better off keeping your application easily maintainable this is why scripting languages dominate the web. share improve..
No PHP for large projects? Why not? http://stackoverflow.com/questions/385203/no-php-for-large-projects-why-not in making it less likely that someone will write poor less maintainable code see CakePHP Symfony PDO Smarty etc etc etc. It has received..
Using Template on PHP http://stackoverflow.com/questions/3988627/using-template-on-php target _blank row 'name' a li endforeach ul easy clean and maintainable. settings.php contains all common settings php hostname_conn..
MVC: how much code should be in a view? http://stackoverflow.com/questions/4698880/mvc-how-much-code-should-be-in-a-view you can reuse across all of your Views. That is much more maintainable than copy and pasting all that logic over and over again when..
PCRE regular expressions using named pattern subroutines http://stackoverflow.com/questions/4941259/pcre-regular-expressions-using-named-pattern-subroutines can make them incredibly powerful whilst keeping them very maintainable see this answer for a good example of this however if the subpatterns..
Using PHP include to separate site content http://stackoverflow.com/questions/5183163/using-php-include-to-separate-site-content
PHP Lexer and Parser Generator? http://stackoverflow.com/questions/8002617/php-lexer-and-parser-generator I wont have to alter the code as I would like to keep it maintainable. I will wait a bit to see if there is another answer otherwise..
|