0
votes
Can you hint return types in PHP 5.2.5?
The only way to hint return type in PHP is to use a good IDE like Eclispe PDT or Zend Studio with standard comment block. PHP simply can n not predict return type because it is dynamically typed la …
7
votes
Defend PHP; convince me it isn’t horrible
PHP is not horrible by any means if one consider following points:
Google 'PHP' and PHP related stuff: one will find results more than that of any programming language
PHP is …
4
votes
Best way to pass JSON from Browser to PHP using Ajax.Request
You can also use Prototype's function toJSON() to convert an array into a JSON object. After passing it to server via Ajax c …
0
votes
Why are the built in functions in PHP named so randomly?
Initially PHP was mere a scripting language with no object oriented support (PHP 3) so, the function names used in PHP upto version 3 and 4 are mostly inspired from PERL syntax. But PHP 5 has lots …
0
votes
MySQL between query returning redundant results
These links may answer your question:
http://www.mysqlperformanceblo …
