vote up 7 vote down star
7

PHP as a Blunt Instrument

I hear PHP getting bashed around a lot lately. In quite a few projects, I have seen insane php code bases - so bad you really wonder if the person was on hallucinogenic drugs when they wrote the code. Sometimes, I wonder what the code would have been like if the initial developers had a bit more guidance as to what not to do.

However, I have also seen some very well organized PHP projects that were done in 100% OOP and were a pleasure to maintain, but they were not written by "php programmers."

I give all of our junior devs a link to Java Anti-Patterns. One of the nice things about that page is the Java-specific examples because there are many features of Java that lend themselves to common mistakes. I was hoping to find a similar list for php, but a google search did not reveal anything meaningful.

There are a few questions already out there for what a developer should know when programming PHP, but I wanted to focus on the negative.

What are the common things you have seen in PHP that should be avoided and what is a common solution to doing the same thing in a better way?

Some of the obvious examples to me that I think will be mentioned but aren't PHP specific:

  • Don't concatenate SQL. Use prepare statements or proper escaping.
  • Don't blindly embed PHP into HTML - use templating/MVC.
  • Don't blindly post raw unfiltered user input - scrub it for XSS attacks.
  • Don't manually try to parse all of your POSTs and GETs - use a web framework.

Here would be some examples that I would consider PHP specific:

  • Don't have too many layers of file include/require linking and try to avoid conditional linking. Rather, have a sane naming convention and be consistent with your organization.
  • Don't use PHPs raw database API unless you can help it, instead use a database framework like ADODB instead.
  • Don't overuse PHP's dynamic typing by setting the variable to a string in one place and a boolean somewhere else, then expecting the boolean tests to make sense.

So, what are your favorite PHP don'ts and how do you do it right?

flag
Woudln't this be better as a community wiki? – altCognito Apr 27 at 12:37

4 Answers

vote up 4 vote down

How Is PHP Done the Right Way? covers a lot of these issues.

link|flag
I wonder why that question didn't come up in my search. Maybe the title didn't lend itself to being found. hmnn... – Elijah Apr 27 at 12:36
Holy **, that's a long (and decent) read – altCognito Apr 27 at 12:48
vote up 7 vote down

I disagree with this one:

  • Don't blindly embed PHP into HTML - use templating/MVC.

PHP is a templating language. While I agree with the concept of implementing MVC, I don't see why there should be a requirement to implement a yet another DSL around producing web output.

link|flag
+1 I agree. If a page is a pretty complex, you should use mvc, but it's simple enough mvc for page's design can be overkill especially if you are using your custom framework (the next person who will work on your code probably will damn you :D) – Alekc Apr 27 at 12:42
I like the way CodeIgniter does it - but in the framework it essentially becomes the view. So what do you do when you need an internationalized version of your page with different fonts, layout and marketing content for your new market when you don't have interchangeable views? – Elijah Apr 27 at 12:42
Don't you just love it how there's a boat load of templating languages out there, implemented in PHP? – roe Apr 28 at 7:06
vote up 1 vote down

One of my favourite DON'Ts would have to be:

$query = 'select * from users where username = ' . $_POST['username'];

Can it get much scarier than that?

link|flag
1  
yes it can, $_REQUEST['username']... – roe Apr 27 at 12:47
$query='SELECT * FROM users WHERE username=\''.$_COOKIE['username'].'\' AND password=\''.$_COOKIE['password'].'\''; The same error, but nobody suspects anything wrong in $_COOKIE. – tstenner Apr 27 at 12:49
1  
@roe, $_REQUEST is scarier! I was going for the idea of directly using super-globals in queries as opposed to $_POST specifically, should have made that clear. – karim79 Apr 27 at 13:11
vote up 1 vote down
  1. Never EVER use a $_GET or $_POST without checking it and cleaning it up.
  2. Read about how to set up the php.ini right.
  3. Never put variables into raw SQL.
  4. If you use frameworks, use the ones with less dependencies.
  5. Stop over-generalization.
  6. Distribute your code on the php files. In most cases there is no real need to put everything into one index.php.
  7. Reduce complexity before writing code.
  8. Respect the fact that it is a web application. (Try to be RESTful.) It's not a desktop application. So stop putting everything into $_SESSION.
  9. At least one comment line for every 10 lines of code. You WILL read that after a year. I promise!
  10. Code like a girl - make it nice to read.
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.