php Programming Glossary: codebase
How can I find unused functions in a PHP project http://stackoverflow.com/questions/11532/how-can-i-find-unused-functions-in-a-php-project or API's built into PHP that will allow me to analyse my codebase for example Reflection token_get_all Are these API's feature..
Stop using `global` in PHP http://stackoverflow.com/questions/12445972/stop-using-global-in-php is that they couple code very tightly. Your entire codebase is dependent on a the variable name config and b the existence.. reason you have to do so everywhere throughout your codebase. You can also not use any piece of code that depends on the.. ball of mud may take some restructuring. The bigger your codebase gets the more you have to decouple the individual parts from..
The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead http://stackoverflow.com/questions/13944956/the-mysql-extension-is-deprecated-and-will-be-removed-in-the-future-use-mysqli of the benefits they offer. You have your own legacy codebase that currently depends upon ext mysql . It would be wise to..
MVC For advanced developers [closed] http://stackoverflow.com/questions/16356420/mvc-for-advanced-developers One uses MVC to add additional constraints to the codebase when simple adherence to OOP practices becomes too loose to.. to OOP practices becomes too loose to control the codebase. The best I can suggest for you would be to begin by expanding..
How to load classes based on pretty URLs in MVC-like page? http://stackoverflow.com/questions/18727186/how-to-load-classes-based-on-pretty-urls-in-mvc-like-page will naturally gravitate toward the framework ish part of codebase. The really simplified versions would look like matches router..
PHP and Enumerations http://stackoverflow.com/questions/254514/php-and-enumerations of having actual enum instantiations throughout your codebase. In the above example BasicEnum and DaysOfWeek cannot be instantiated..
'AND' vs '&&' as operator http://stackoverflow.com/questions/2803321/and-vs-as-operator vs ' ' as operator Actually I am facing a codebase where developpers decided to use ' AND ' and ' OR ' instead..
Robust and Mature HTML Parser for PHP [duplicate] http://stackoverflow.com/questions/292926/robust-and-mature-html-parser-for-php single line. I generally do not recommend this parser. The codebase is horrible and the parser itself is rather slow and memory..
Simple test vs PHPunit http://stackoverflow.com/questions/34312/simple-test-vs-phpunit is actively maintained stable and works great for every codebase every scenario and every way you want to write your tests. SimpleTest..
How do you parse and process HTML/XML in PHP? http://stackoverflow.com/questions/3577641/how-do-you-parse-and-process-html-xml-in-php single line. I generally do not recommend this parser. The codebase is horrible and the parser itself is rather slow and memory..
How to parse HTML with PHP? [duplicate] http://stackoverflow.com/questions/3650125/how-to-parse-html-with-php single line. I generally do not recommend this parser. The codebase is horrible and the parser itself is rather slow and memory..
Doing calculations in MySQL vs PHP http://stackoverflow.com/questions/6449072/doing-calculations-in-mysql-vs-php with logic in out of the way places. When searching your codebase for references to a specific column for example it is easy to..
|