vote up 42 vote down star
39

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 (preferably from your own experience)?

Community wiki'ed for complete satisfaction.

flag
show 2 more comments

37 Answers

1 2 next
vote up 41 vote down

Writing code without using the maximum level of error reporting

All development should be done with:

error_reporting(E_ALL | E_STRICT);

All notices and warning should be eliminated during development. It makes the code incredibly much more stable. (Of course all errors should then be hidden on production setups.)

link|flag
10  
+1 for forgetting to hide errors and warnings on production. – Artem Russakovskii Jul 27 at 8:06
1  
Agreed. Ever tried that with Typo3? It's quite amusing actually. – x3ro Jul 27 at 8:26
show 2 more comments
vote up 41 vote down

I personally enjoy writing in PHP. The fun stops when I have to do code reviews. Here's why:

  • Don't use regex (preg_match, etc) for simple string searches.
  • Turn on error_reporting(E_ALL | E_STRICT); in development.
  • Separate your damn presentation from your damn logic, better yet, use a standard templating system.
  • Weak-typing is a double-edged sword. Avoid exploiting it liberally.
  • Clean all user input via casting, escaping, appropriate functions etc.
  • Did I say clean all user input? Really, it boggles me how often this gets passed over.
  • Check the library before writing ridiculous functions. It's full of its own ridiculous functions.
  • If writing anything resembling a library, be consistent with parameter order ("is it hash/needle or needle/hash?").
  • define is your friend. Please don't make me hunt for silly literals in your code.
  • Unless you're using register_shutdown_function, die / exit is usually a very bad and ungraceful way of handling errors, especially in production. Even then, you're probably making it more complex than it needs to be.
  • You're writing a wrapper class for an existing library compiled as part of PHP (i.e.: db interaction). Stop. You should probably use a Pear class.
  • Format your code (yes, really).
  • Format your code consistently.
  • Don't write code like this: if ( condition ) { return true; } else { return false; }.
  • Use an opcode cache (APC or an equivalent thereof).
  • Use a distributed object cache when appropriate (ala memcached).
  • Be aware of type coercion: it will bite you. For example, "-" == (int)"-" is true.
  • POST when you should POST, GET when you should GET.

Maybe more, that's it for now.

Edit:

  • Using magic quotes.
  • Not upgrading (when possible).
  • Using $_REQUEST out of laziness instead of the appropriate $_GET and $_POST.
link|flag
vote up 26 vote down

Unsafe usage of include

You often see things like:

include("pages/" . $_GET["pg"]);

It's a mistake of incredible proportions to not check the pg variable here.

link|flag
1  
This problem has caused Google to flag several of our all-ages sites due to unscrupulous spammers linking to poorly designed pages (created by outside developers, of course ;) and stuffing malicious JS code into the querystring parameters. In the worst cases, these parameters have allowed full domain path includes (not even restricted to a subdir on our servers). – shawnr Jul 27 at 13:40
vote up 24 vote down

SQL-injection vulnerabilities due to incorrect usage of mysql_query()

This might be a controversial opinion, but I belive that it's a mistake to use the old family of mysql functions. These are the family of functions prefixed with mysql_. There isn't really anything wrong with them as long as you use them correctly, but unfortunately I've found that most of the time they just aren't used correctly. The end result is that we have sites all over the internet vulnerable to SQL injection.

A better choice is to use an API that supports prepared statements, which solves this problem completely. MySQLi is such a family of functions, and for security purposes it's fine. However, I believe that the API is a bit of a pain to use. The main basis for that opinion is the fact that you simply cannot retrieve the result of a prepared statement as an array.

The best option is to use PDO. It's a modern database agnostic wrapper that supports flexible prepared statements and results in modern, safe and readable code. It's a joy to work with.

We should all stop teaching beginners the old functions and show them how to use and become comfortable with PDO from the start.

link|flag
8  
I agree: PDO is the best option for all DB interaction in PHP, and MySQLi's API is a pain. – Justin Johnson Jul 27 at 8:07
1  
I used to like MySQLi, until I learned that its features are rather variable depending on what version of it you've got. I went from developing on a very modern environment to deploying to a system that couldn't even deal with the prepared statements I'd used. PDO! – The Wicked Flea Jul 28 at 17:53
vote up 17 vote down

I've got a list for this one from an old blog post I wrote awhile ago.

Unquoted array indexes:

//This is *WRONG* (but will work):
echo $array[my_key];
//This is correct
echo $array['my_key'];

PHP considers the unquoted index as a "bare" string, and considers it a defined constant. When it can't find a matching symbol for this constant in the symbol table however, it converts it to a real string, which is why your code will work. Quoting the index prevents PHP from having to check for the defined constant, and makes it safer in case someone defines a future constant with the same name. I've also heard that it is up to seven times faster than referencing an unquoted index for this reason.

link|flag
1  
@x3ro - I broke it into a separate answer. I know what you mean though. I used double-quotes in all those strings just so everything would be equal between the comparisons except the factor under discussion. – zombat Jul 27 at 8:26
show 3 more comments
vote up 9 vote down

I think a very typical mistake, not even for a beginner is to have some kind of chars before the tag

<?php

Which makes the script thow an error I you want to modify the header. This is also the case if you end you php scripts with a php-tag an then these files get included/required. Nothing complicated, but sometimes hard to find.

link|flag
show 2 more comments
vote up 8 vote down

I'd say the most common error in php is not checking user-input (and as it is a language which is mostly used for the web, there's almost always some user-input somewhere), making way for (My)SQL-Injections or XSS. I've even seen people passing user-input directly to eval()...

link|flag
4  
Not checking user input is great if you like to shoot yourself in the foot. But it is not limited to PHP. – Gamecat Jul 27 at 8:05
1  
The problem with PHP is that its lax nature almost encourages people to skip input validation. It's so easy to just do $sql = "UPDATE users SET something = 1 WHERE user_id = $_POST[user]"; – Blixt Jul 27 at 8:07
show 1 more comment
vote up 7 vote down

Putting everything in one file

This is really easy to do, but after a while you realize that the file is too complicated and will easily break. If you can, split the file into several files, with functions in each file. The best method is to go object oriented (I assume you are using PHP5, its 2009 for gods sake!) and create classes with functions. This might slow down your script a bit, and will make a lot more data, but everything gets separated into nice objects.

link|flag
show 3 more comments
vote up 7 vote down

Forgetting to learn the standard library, first.

Much wheel-reinvention is caused by this! (This applies to any programming environment, really)

link|flag
1  
I can't remember how many times I've said this to my colleague: "Ever heard of function x ?" – andyk Jul 28 at 5:58
vote up 7 vote down

This is more of a best practice, but it's definitely the answer to much frustration for new developers - omit the closing tag ("?>") for PHP Files. It is not required by PHP, and omitting it prevents trailing whitespace from being accidentally injected into the output.

link|flag
3  
Omitting it can cause its own problems [plenty on SO about it]. Making sure you actively prevent typing extra whitespace etc after the closing tag would be much better practice. – Peter Spain Jul 27 at 15:16
4  
@peter I've never had such a problem. – Justin Johnson Jul 27 at 21:10
2  
@Sohnee, here's what the PHP documentation says about the optional closing tag - php.net/manual/en/… : "The closing tag of a PHP block at the end of a file is optional, and in some cases omitting it is helpful when using include() or require(), so unwanted whitespace will not occur at the end of files, and you will still be able to add headers to the response later. It is also handy if you use output buffering, and would not like to see added unwanted whitespace at the end of the parts generated by the included files." – Donal Jul 28 at 16:39
show 2 more comments
vote up 6 vote down

Not turning on strict and reporting all errors, and you miss out on typos mistakes.

And there's one in PHP4 where foreach return value, not reference.

Some PHP bugs due to form processing are actually due to bad form HTML.

And here's my nemesis. Using of headers. They are not function calls! I had see code like this:

if ($bUserValid)
{
    header("Location: login-success.php");
}

header("Location: login-error.php");

The last header sent is the last header to be executed. So no matter what happens, you will always be redirected to login-error.php

link|flag
2  
Yeah, header() only sets header location, but doesn't outputs it right away. die() or exit() must be called after header to terminate script, and after that headers are sent :) – usoban Jul 27 at 8:07
1  
Also keep in mind that some spiders/bots IGNORE the "Location" headers completely, and no client has to follow them. That means if you use header redirection for security without any kinda of fallback, your secure data will be displayed in some search results and someone that disables header redirection in their browser can access it too. – tj111 Aug 11 at 20:10
vote up 6 vote down

Using $var inside a class when what I really mean is self::$var or $this->var. With warnings off, this doesn't raise any flags.

link|flag
vote up 6 vote down

Aware of uninitialized arrays

foreach($customers as $customer) {
    $customerIds[] = $customer->getId();
}

Always do

$customerIds = Array();

Before loop, it saves you a lot of debugging time.

link|flag
6  
While instantiating as null works, I would say that templating system is wrong. – Justin Johnson Jul 27 at 21:16
show 2 more comments
vote up 6 vote down

Incorrect testing of strpos / stripos

if (strpos('Needle in a haystack', 'Needle')) {
    echo "There's a needle in the haystack!";
} else {
    echo "There's no needle...";
}

This will output "There's no needle...", as strpos will return 0, which is interpreted as false.

Should be:

if (strpos('Needle in a haystack', 'Needle') !== false) {

OR

if (strpos('Needle in a haystack', 'Needle') >= 0 ) {
link|flag
vote up 5 vote down

Never compare floats for inequality.

var_dump(0.7 + 0.1 == 0.8);

outputs false. No kidding.

This is due to the fact that it is impossible to express some fractions in decimal notation with a finite number of digits. For instance, 1/3 in decimal form becomes 0.3.

If higher precision is necessary, the arbitrary precision math functions and gmp functions are available.

Source: PHP: Floating point numbers check out the warning part

link|flag
1  
This is not PHP-specific. Computers do floating point math completely differently than humans. – Alex Jul 29 at 20:04
show 1 more comment
vote up 4 vote down

Forgetting the ; at the end of a line :-)

link|flag
show 1 more comment
vote up 4 vote down

Use single quotes instead of double quotes for strings when possible.

When you surround a PHP string in double quotes, it is subsequently parsed by the PHP interpreter for variables and special characters, such as "\n". If you just want to output a basic string, use single quotes! There is a marginal performance benefit, since the string does not get parsed. If you have variables or special characters, then by all means use double-quotes, but pick single quotes when possible.

echo 'Do this when possible.';
echo "Not this.";
link|flag
2  
Have you got any details on the performance benefits? I was always told it really doesn't matter which you use, just be consistent with my use of quotes and as such have usually stuck with double-quotes. – Peter Spain Jul 27 at 14:46
2  
Also, if you're echo-ing HTML, single quotes are nicer since you don't need to keep escaping the double quotes. And even using double quotes, you need to break out of them for functions, so it's easier to move all variables outside of strings to be consistent. – DisgruntledGoat Jul 27 at 15:17
2  
The performance benefit is definitely marginal, and it's not worth re-writing your app over. If you're going to pick a "quotes habit" however, single quotes have the advantage. @DisgruntledGoat: Completely agree. – zombat Jul 27 at 17:39
5  
PHP team says: "Benchmarks run against PHP 5.2 and 5.3 show that parsing double-quoted strings with interpolation is no slower (and often faster) than single-quoted strings using concatenation." groups.google.com/group/make-the-web-faster/… – porneL Jul 27 at 21:57
3  
If you're worried about the performance difference as that which results between single and double quotes -- PHP is NOT the right choice. – Dinah Aug 1 at 19:19
show 2 more comments
vote up 4 vote down

Calling a method just because method_exists() returned true. Note that just because a method exists does not mean it is callable. method_exists returns true even if the method is protected or private.

link|flag
vote up 3 vote down

Using mysql_escape_string() instead of mysql_real_escape_string().

link|flag
1  
What I don't get is: why don't they just make it so the library always uses the safe one? Retain the syntax so you won't break anything, but for goodness sake, why keep in the broken and misleading function? – Dinah Aug 1 at 19:21
show 1 more comment
vote up 2 vote down

Data Access must be done right. By "right" I mean proper encapsulation of data-access logic, no SQL concatenation and please-please do use parametrized queries: this will help make world a better place.

link|flag
1  
Can you expand on these points please? Specifically the parametrized queries. – Artem Russakovskii Jul 27 at 8:02
show 1 more comment
vote up 2 vote down

Using literals as strings

While it's fortunately disappearing from more recent PHP versions, one thing I always hated was how PHP tried to do the best of any developer mistake instead of throwing an error. One such example is that trying to get an undefined constant would return the constant name as a string instead, and unknowing people would "abuse" that:

$user = $_POST[user]; // $_POST['user'], unless user is a defined constant
link|flag
vote up 2 vote down

I often find that the biggest mistake with PHP is worrying too much about the difference between single and double quotes, or the difference between print and echo when you should be worring about the loop within a loop that's actually taking up most of the processing time!

PHP coders are experts as the incredible detail of a tip or trick (how many discussions have we seen about ++i instead of i++, while at the same time, they're counting the length of the array in each loop, which takes more time than ++i and i++ put together!)

link|flag
vote up 2 vote down

PHP references != C pointers

With PHP reference passing, what f() is passing to g() is a handle that will let g() change the assignment of one of f()'s local variables. This sounds almost the same as a C pointer, but in C, g() doesn't change the assignment of f's local variable, it changes the contents of the memory location it points to.

I found this quite disturbing when I got it for the first time, firstly because my local variables were a lot less local than I thought they were; and secondly I had trouble with the very idea of functions having access to each others' local variable scopes, which I wasn't familiar with from other languages I'd used... what languages do have that feature?

Another C habit which doesn't apply in PHP is passing pointers around to avoid memory being duplicated. As far as I understand, this isn't necessary, as the PHP interpreter uses copy-on-write tricks to avoid reassigning memory until it has to.

There was a very good article on this, maybe in the PHP Architect magazine, with boxes and arrows explaining step-by-step what was going on in a program execution. If somebody can remember where that is and can find a URL for it, can they append it here?

link|flag
vote up 1 vote down

Not escaping the output of any variable that was brought over get POST or GET using htmlspecialchars(). This is to prevent XSS.

link|flag
vote up 1 vote down

Using json_encode() prior to version 5.2.0.

link|flag
vote up 1 vote down

This one

var_dump(0123 == 123);

outputs false because 0123 in the comparison is translated to octal because of the leading zero, while

var_dump("0123" == 123);

outputs true because "0123" is converted to integer 123

link|flag
vote up 1 vote down

Googling for every answer

One of the first things everyone should learn is to read the documentation, it's not that hard. The docs are excellent and answer almost every question.

I heard from several newbies independently that the docs are hard to understand, apparently the function signatures look too confusing. I half blame this on the dynamically typed nature of PHP, which makes people not think about variable types and gets them confused when confronted with something like:

string chunk_split ( string $body [, int $chunklen [, string $end ]] )

When all they are used to see is:

chunk_split('my text');
link|flag
1  
I actually find it easier to search the doc than google. Especially if I have the php search installed in firefox's search bar. – Justin Johnson Jul 28 at 22:54
1  
I find that Google brings php.net to the top of the search results for many PHP queries. If you type "php <function>" into Firefox's address bar, you're almost guaranteed to be taken to the correct page on php.net. – DisgruntledGoat Jul 30 at 11:46
show 3 more comments
vote up 1 vote down

Saving as UTF-8 (with BOM)

PHP will not throw any warnings or errors but you will have strange "markup" objects (appearing as white lines in the DOM tree inside Firebug) on the page. If you construct the page using multiple templates they appear at the places where your template starts. Random margins and whatnot will haunt your dreams...

Spaces before <?php

If you have spaces before any <php tag in one of your files, you will not be able to send headers or set cookies. You will however get a decent warning if you have the correct error display settings on your development system.

link|flag
vote up 1 vote down

Use a Framework. There are a lot of very good and excelent php application frameworks out there, to name a few YII, PRADO, LIMONADE, SOLAR, CakePHP, Symfony, CodeIgnite .... [PLACE YOURS HERE] ... do not reinvent the wheel (again ... and again ... and again).

Do your homework and identify which one better suits your requirements/likes and go start using it. It will save you tons of time.

link|flag
vote up 0 vote down

forgetting to use e.g. mysql_escape_string() and similar

link|flag
5  
Please note that this function throws an E_DEPRECATED notice on PHP 5.3. Use mysql_real_escape_string() instead. Hey, I should post this one as a comment mistake. =p – Randell Jul 27 at 8:19
1  
Yeah, saw that. LOL. Comments should have edits. – Randell Jul 29 at 9:55
show 1 more comment
1 2 next

Your Answer

Get an OpenID
or

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