208
votes
64answers
11k views
Defend PHP; convince me it isn’t horrible [closed]
I made a tongue-in-cheek comment in another question thread calling PHP a terrible language and it got down-voted like crazy. Apparently there are lots of people here who love PHP.
So I'm genuinely …
82
votes
67answers
10k views
Hidden Features of PHP?
EDIT: This didn't really start as a hidden features of PHP topic, but thats what it ended up as, so go nuts.
I know this sounds like a point-whoring question but let me explain where I'm coming …
70
votes
60answers
8k views
What PHP framework would you choose for a new application and why?
Over the course of your web development experience, what PHP framework(s) have you worked with? What strengths and weaknesses have you observed in those frameworks? Considering these, what framework …
62
votes
15answers
4k views
How to find list of possible words from a letter matrix [Boggle Solver]
Lately I have been playing a game on my iPhone called Scramble. Some of you may know this game as Boggle. Essentially, when the game starts you get a matrix of letters like so:
F X I E
A M L O
E W B …
48
votes
21answers
3k views
Tactics for using PHP in a high-load site
Before you answer this I have never developed anything popular enough to attain high server loads. Treat me as (sigh) an alien that has just landed on the planet, albeit one that knows PHP and a few …
43
votes
57answers
5k views
Any good PHP IDE, preferably free or cheap?
Does anyone know of any good IDE (Code completion, Syntax coloring, etc) that will handle php. Looking for anything that might be relatively cheap or free and doesn't run like crap (IE: Eclipse)
42
votes
37answers
2k views
Common programming mistakes for PHP developers to avoid?
In the spirit of Common programming mistakes for .NET developers to avoid?, what are common mistakes PHP developers make?
Using == when === should be used is a common one. What are some others …
36
votes
9answers
1k views
Why are the built in functions in PHP named so randomly?
It seems that there is no real pattern to the way functions are named, str_replace, strrpos, strip_tags, stripslashes are just some.
Why is this the case?
EDIT - this wasn't meant as a "troll" type …
33
votes
12answers
879 views
PHP vs. Java are there energy consumption differences?
I heard a rumor, that Java consumes less energy than PHP and was wondering if and how this would be true. I'm currently working in a company where we base most of our apps on PHP. Power consumption …
31
votes
18answers
9k views
Good PHP ORM Library?
Does anyone know of a good object-relational-mapping library for PHP? I know of PDO/ADO, but they seem to only provide abstraction of differences between database vendors not an actual mapping between …
30
votes
21answers
1k views
When do you know it’s time to rewrite an application
This is humbling, but probably something most can relate to. I am currently adding functionality to a PHP application I wrote for a client 2 years ago. In the interest of full disclosure, this was …
28
votes
26answers
2k views
Inherited a PHP nightmare, where to start?
I've inherited a PHP project that's turning out to be a nightmare. Here are the salient points:
All the original developers have left
The code has no version control
All development and testing was …
28
votes
33answers
3k views
Worst PHP practice found in your experience?
What are the worst practices found in PHP code?
Some examples:
Use of $array[reference] without single quotes
Instance "hidden" variables into inclusion files, which are needed later
Lots of …
28
votes
24answers
2k views
How do you debug PHP scripts?
How do you debug your PHP script?
I am aware of basic debugging such as using the Error Reporting. The breakpoint debugging in PHPEclipse is also quite useful. Any other good/better techniques out …
28
votes
12answers
1k views
Best way to implement unit testing in PHP
I'd really like to start implementing Unit Testing in my projects. I don't know how viable this is to do in PHP. If anyone has done this, how was it implemented? Did it increase productivity?
