php Programming Glossary: pitfall
PHP: Best way to iterate two parallel arrays? http://stackoverflow.com/questions/10132210/php-best-way-to-iterate-two-parallel-arrays however all of the methods have a rather significant pitfall. Here are some of the caveats with the methods suggested You..
Strategy for supporting unicode & multi language in PHP5 http://stackoverflow.com/questions/1085093/strategy-for-supporting-unicode-multi-language-in-php5 8 and the connection to your database is in UTF 8 a common pitfall . Make sure to run this when establishing a connection mysql_set_charset..
Null vs. False vs. 0 in PHP http://stackoverflow.com/questions/137487/null-vs-false-vs-0-in-php it has found something at the begining of the string php pitfall if strrpos Hello World Hello never exectuted smart move if strrpos..
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 constructs from different languages to PHP. Another common pitfall is trying to turn PHP into a pure OOP language by sticking object..
How to know if php script is called via require_once()? http://stackoverflow.com/questions/4545878/how-to-know-if-php-script-is-called-via-require-once some sort of _SERVER 'REQUEST_URI' and _SERVER 'PHP_SELF' pitfall but I was wondering if there was some sort of an elegant way..
PHPUnit best practices to organize tests http://stackoverflow.com/questions/8313283/phpunit-best-practices-to-organize-tests have more than one test class in one file so avoid that pitfall. Don't have a test namespace It just makes writing the test..
Send JSON data from Javascript to PHP? http://stackoverflow.com/questions/8599595/send-json-data-from-javascript-to-php decode that data and put it in an array object. The pitfall I ran into Initially I tried to send the JSON string with the..
|