up vote 115 down vote favorite
122
share [g+] share [fb]

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.

link|improve this question
show 2 more comments
feedback

closed as not constructive by casperOne Dec 20 '11 at 16:23

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

39 Answers

1 2
up vote 118 down vote accepted

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 presentation from your logic; better yet, use a standard templating system (like Smarty).
  • 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 haystack/needle or needle/haystack?").
  • 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 still, you're probably making it more complex than it needs to be.
  • Writing a wrapper class for an existing library compiled as part of PHP (eg 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; } or $variable = condition ? true : false; just assign the conditional directly (this applies to any language).
  • Use an opcode cache (APC or an equivalent thereof).
  • Use a distributed object cache when appropriate (a la 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.
  • Don't use magic quotes.
  • Upgrade (when possible).
  • Use $_GET and $_POST (instead of $_REQUEST out of laziness).
link|improve this answer
11  
Check the library before writing ridiculous functions. It's full of its own ridiculous functions haha, great! :D – alex Aug 10 '10 at 7:38
5  
Agree with all but the ternary operator "don't". It cant be incredibly useful for checking / setting default $_GET or $_POST vars, like $aInput['something_id'] = isset($_POST['something_id']) ? $_POST['something_id'] : 0. A block of those at the top of a script is a fine way of [pre]defining all incoming variables in an easy-to-reference tabular format. That way you KNOW all your vars are already defined and at the very least have a default value that can be checked, rather than relying on isset($_POST['...']) throughout the code. – enobrev Oct 30 '10 at 8:31
13  
That's not what I'm saying. I'm arguing against the redundancy of literally assigning a true or false value after evaluating a condition when you can just use the result of the conditional evaluation as the assignment value. – Justin Johnson Oct 31 '10 at 21:25
show 4 more comments
feedback

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|improve this answer
14  
+1 for forgetting to hide errors and warnings on production. – Artem Russakovskii Jul 27 '09 at 8:06
1  
Agreed. Ever tried that with Typo3? It's quite amusing actually. – x3ro Jul 27 '09 at 8:26
show 2 more comments
feedback

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|improve this answer
3  
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 '09 at 13:40
2  
Ye gods, I never knew people did this. – abeger Mar 3 '10 at 16:53
show 1 more comment
feedback

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|improve this answer
14  
I agree: PDO is the best option for all DB interaction in PHP, and MySQLi's API is a pain. – Justin Johnson Jul 27 '09 at 8:07
2  
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! – Robert K Jul 28 '09 at 17:53
show 1 more comment
feedback

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|improve this answer
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 '09 at 8:26
show 1 more comment
feedback

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 throw an error if you want to modify the header. This is also the case if you end your PHP scripts with a php-tag and then these files get included/required. Nothing complicated, but sometimes hard to find.

link|improve this answer
5  
A typical mistake is to save files in UTF-8 instead of UTF-8 without BOM – Briedis May 26 '11 at 15:44
show 3 more comments
feedback

Forgetting to learn the standard library, first.

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

link|improve this answer
4  
I can't remember how many times I've said this to my colleague: "Ever heard of function x ?" – andyk Jul 28 '09 at 5:58
feedback

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) {
link|improve this answer
feedback

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|improve this answer
4  
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 '09 at 15:16
7  
@peter I've never had such a problem. – Justin Johnson Jul 27 '09 at 21:10
2  
When people suggest things like this, it just feels like a hack. What if the behaviour differs in a future version of PHP. Follow the PHP documentation! – Sohnee Jul 28 '09 at 6:38
9  
@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." – d__ Jul 28 '09 at 16:39
1  
The IDE's I've used go crazy if you omit the closing tag. Some of them even highlight the entire file in the same color making it unreadable. I've yet to see anyone editing the files accidentally inject whitespace yet... – Lotus Notes Apr 7 '10 at 18:31
show 3 more comments
feedback

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 crying out loud!) 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|improve this answer
show 4 more comments
feedback

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|improve this answer
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 '09 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 '09 at 8:07
show 2 more comments
feedback

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|improve this answer
10  
While instantiating as null works, I would say that templating system is wrong. – Justin Johnson Jul 27 '09 at 21:16
show 3 more comments
feedback

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

link|improve this answer
show 2 more comments
feedback

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|improve this answer
1  
Wow, crazy. Do you know the exact reason? – DisgruntledGoat Jul 28 '09 at 15:49
7  
This is not PHP-specific. Computers do floating point math completely differently than humans. – Alex Weinstein Jul 29 '09 at 20:04
show 1 more comment
feedback

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|improve this answer
3  
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 '09 at 8:07
3  
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 '09 at 20:10
feedback

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|improve this answer
feedback

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|improve this answer
3  
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 '09 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 '09 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 '09 at 17:39
9  
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/browse_thread/… – porneL Jul 27 '09 at 21:57
9  
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 '09 at 19:19
show 2 more comments
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
show 1 more comment
feedback

Using mysql_escape_string() instead of mysql_real_escape_string().

link|improve this answer
2  
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 '09 at 19:21
3  
@Dinah: Because the point isn't actually the escaping done by function itself, it's having a database connection for the escaping. mysql_real_escape_string() will actually attempt to connect to the database unless an active connection is available, which is significantly different functionality from the older function. Anyway, mysql_escape_string() is marked as deprecated, so it's not like they're keeping it. – Ilari Kajaste Oct 15 '09 at 9:49
feedback

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|improve this answer
1  
Can you expand on these points please? Specifically the parametrized queries. – Artem Russakovskii Jul 27 '09 at 8:02
show 1 more comment
feedback

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|improve this answer
feedback

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

link|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

Using json_encode() prior to version 5.2.0.

link|improve this answer
feedback

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|improve this answer
2  
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 '09 at 22:54
1  
How about "Posting on SO for every question"? – Artem Russakovskii Jul 29 '09 at 15:15
4  
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 '09 at 11:46
1  
@Dinah: Not if you're using it the newbie way: Finding usage examples for functions because you're trying to avoid reading the documentation. – deceze Aug 2 '09 at 2:21
show 1 more comment
feedback

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|improve this answer
feedback

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

link|improve this answer
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 '09 at 8:19
1  
Yeah, saw that. LOL. Comments should have edits. – Randell Jul 29 '09 at 9:55
show 1 more comment
feedback
1 2

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