vote up 28 vote down star
23

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 recursive inclusion not using "_once" functions

Note: maybe subjective or "fun" if you like.

flag
1  
The worst practice of PHP has nothing to do with code, it's the low cost of entry into developing with it. This is the core source of every problem written in that language has. – marr75 Jun 19 at 16:15
show 3 more comments

33 Answers

1 2 next
vote up 53 vote down check

Using and relying on register_globals. Yuck.

link|flag
show 4 more comments
vote up 37 vote down

How about Magic Quotes? So evil they've been removed from PHP6.

link|flag
18  
Yes, it was like a seatbelt...fastened around the neck. – micahwittman Oct 26 '08 at 8:57
show 1 more comment
vote up 1 vote down

Overuse of globally scoped variables in general. And, erm... using PHP ;-)

link|flag
4  
Agree with overuse of scoped variables. Disagree STRONGLY with the bash of PHP, I don't think I would use anything else if given a choice as the backend for my websites. – Nicholas Flynt Oct 24 '08 at 23:29
show 2 more comments
vote up 24 vote down

HTML and PHP and SQL interspersed without any discipline, resulting in an unmaintainable mess.

link|flag
2  
I tend to "mix" a lot, but I do all my logic and calculation before lines of HTML. That HTML may include lots of PHP to control formatting based on pre-calculated logic, but I'm generally good about keeping it separated. – Nicholas Flynt Oct 24 '08 at 23:21
show 4 more comments
vote up 38 vote down
  • Using the dot operator to stuff variables into queries, without any form of escaping or variable binding. This still happens a lot.
  • Using extract() liberally to have easy access to variables. We got rid of register_globals only to see it replaced with extract($_POST).
link|flag
1  
wtf? extract is awesome when used properly. Using it for $_POST is just damn sick, but you can't blame extract as such. – dr Hannibal Lecter May 6 at 15:44
show 5 more comments
vote up 21 vote down

HTML + PHP + SQL all nested and messed up together.

Add in a bunch of global functions relying on global variables, and you've got a right mess.

And this was just in the first 30 lines of the index.php file of a major open source project that shall remain nameless...

link|flag
5  
How about HTML+PHP+SQL+JS+CSS, I've seen that... – Dean Oct 24 '08 at 11:32
8  
Let me guess... WordPress? – Maciej Oct 24 '08 at 14:02
7  
Why remain nameless? Bad coders should be shamed into becoming good coders. WORDPRESS SUCKS. – Lucas Oman Oct 24 '08 at 15:30
3  
I'm all for proper coding practices and whatnot, but from a user perspective, Wordpress is probably the best blogging software out there. At the end of the day, who cares what the code looks like. – nickf May 6 at 13:09
1  
@nickf: I do! Cause I have to read it, fix it, tweak it, use it, etc., etc... – Svish May 6 at 13:45
show 4 more comments
vote up 28 vote down

using @ everywhere because they're too lazy to use isset()

link|flag
1  
Or "empty();"! – Ty Mar 12 at 18:56
show 1 more comment
vote up -3 vote down

Setting the error reporting to 0 - error_reporting(0);

Good in production mode - very bad in development mode.

link|flag
1  
Bad in production mode, too. You should LOG errors, but don't display them to the user. – Bob Somers Oct 24 '08 at 14:26
show 1 more comment
vote up 7 vote down

Setting up a system that uses an id field from $_GET to access a particular data record, then not checking group-permissions when the user just starts incrementing the id in the url. Very bad when the page displays information like SS#'s, addresses, etc.

ex: user_record.php?user_id=1

Either obfuscate the user_id in the url with some kind of salted hash, or check that the user has permission to be viewing the page. Better yet, do both.

link|flag
2  
There's been stuff on dailywtf about entire queries in the URL. – chaos May 6 at 15:43
show 1 more comment
vote up 17 vote down

Programmers thinking that they are 'doing object orientation', when they are actually creating large collections of functions and using hardly any useful OOP practices.

link|flag
vote up 16 vote down

Web designers thinking that because it is easy to learn PHP syntax that it must be easy to learn to code. PHP is just... a more powerful CSS, right?

They're fans of using Dreamweaver to manage their PHP code, which often means having the same code pasted at the top of every single page on the site. Includes, abstraction, DRY, generalization are all beyond their programming "knowledge."

link|flag
6  
Dreamweaver is the source of most PHP evils. It screws up the code formatting, encourages bad css names, and encourages duplicating the layout everywhere thanks to templates and by making it easy to change multiple files. Makes it hell for the rest of us. – jcoby Oct 24 '08 at 14:12
show 4 more comments
vote up 0 vote down

Planning on using the WTF crap php guys call "closure"

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

register_globals sibling in evil extract($_REQUEST)

magic_quotes_*

DIRECTORY_SEPARATOR when opening files ('/' is usable on all systems).

require_once(SF_ROOT_DIR.DIRECTORY_SEPARATOR.'apps'.DIRECTORY_SEPARATOR.SF_APP.DIRECTORY_SEPARATOR.'config'.DIRECTORY_SEPARATOR.'config.php');

Yeah.. that's readable.

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

Bad use of the magic method __call(); resulting is some ugly things like the automagically creation of the setter and getter methods via reflection.

link|flag
vote up 4 vote down

By far the worst practice I have ever seen is suggesting that eval() should ever be used under any circumstance what-so-ever. eval() is evil. Never ever use eval(). If you feel like you have no other choice, there's a 99.99% chance you've done something horribly, horribly wrong.

There are also particularly egregious examples of system function misuse (backtick operators, system(), passthru())

@jcoby, I have to disagree with you on DIRECTORY_SEPARATOR. It's a matter of personal preference. I personally prefer the constant as it is more precise. If paths are exported to logs or other displays, I know they are valid without the need for paranoid transformations and can be used by out-of-band scripts. As for readability, the example you gave could easily have been rewritten as:

// Load configuration settings.
require_once(implode(DIRECTORY_SEPARATOR, array(
    SF_ROOT_DIR,
    'apps',
    SF_APP,
    'config',
    'config.php'
));

Which is readable and arguably easier to modify than scanning through a string. I'm not suggesting that using the constant is a better practice, I'm just suggesting that it's a matter of personal preference and consistency should be followed whatever the choice may be.

link|flag
vote up 5 vote down

"Enterprise error suppression" ;-)

if (some_condition) {
   return false;
   error_log('some error message');
}
link|flag
vote up 7 vote down

Take a look at the design of CakePHP. It uses classes without being object-oriented. It duplicates classes within an app layout. It defines methods that take input that doesn't match the method prototype at all. It dumps things in to $this->params, which is a more complicated version of $_REQUEST.

It takes everything that is convenient, wonderful, and fast about PHP and makes it complicated, disturbing, and slow.

link|flag
vote up 7 vote down

Trying to emulate the strenghts of other languages while forgetting about the elegant simplicity that makes PHP powerful. And overengineering frameworks.

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

I've come across

if ($condition) {}
else {
    // something
}

and

if ($condition) {
    $var = 'foo';
} else {
    $var = 'foo';
}

And the following is actually code written by someone who took Hungarian Notation to the extreme. These are just snippets from a class for manipulating a DOMXML object.

function getAttributes(&$a_oNode)
{
    $l_aAttributes = $a_oNode->attributes();
    if ($l_aAttributes === NULL)
        return array();

    $l_iCount = count($l_aAttributes);
    $l_i = 0;

    for ($l_i = 0; $l_i < $l_iCount; $l_i++)
    {
        $l_aReturn[$l_aAttributes[$l_i]->name()] = $l_aAttributes[$l_i]->value();
    }

    return $l_aReturn;
}

function getText(&$a_oNode)
{
    $l_aChildren = $a_oNode->child_nodes();
    if ($l_aChildren === NULL)
        return NULL;

    $l_szReturn = "";

    $l_iCount = count($l_aChildren);
    for ($l_i = 0; $l_i < $l_iCount; $l_i++)
    {
        if ($l_aChildren[$l_i]->node_type() == XML_TEXT_NODE)
            $l_szReturn .= $l_aChildren[$l_i]->node_value();
    }

    if (strlen($l_szReturn) > 0)
        return $l_szReturn;

    return NULL;
}

Another really bad issue that I have to deal with is the complete lack of consistent indentation, and also inconsistent use of braces, such that you get code like this:

if ($condition)
    foo();

Which lends itself open to a bug because when it's written without indentation, and foo() is inline with the 'if', another developer could miss the condition and add a bar() before foo(), not realising that they've completely changed the flow of logic (it has happened...).

link|flag
2  
This is bad code, and has nothing whatsoever to do with PHP, besides the fact that the bad code happened to be written IN PHP. – mabwi Oct 31 '08 at 13:22
vote up 6 vote down

Not validating input.

mysql_query('SELECT * FROM users WHERE user = '.$_POST['user']);

Or:

$_REQUEST['anything']

How often are you not going to know what kind of request you're getting? If anyone has a legitimate use case, please share.

link|flag
1  
I built a REST API and at time the requests were in POST and at other times they were GET so I used $_REQUEST – Unkwntech Dec 22 '08 at 16:24
1  
Try two different PHP files. – jmucchiello May 6 at 16:44
show 2 more comments
vote up 0 vote down

Yeah, found a new one! The future "\ as namespace separator". The irc discussion show how stupid the PHP core developper are. They don't just have a clue about what context sensitive operators are.

Damn, that's a shame such an horrible language gains some popularity!

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

One company I worked for had written their own shopping cart; on the checkout page the purchase total was calculated and saved to a hidden form field... When you submitted your order it conducted the transaction with the price from that hidden field...

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

renaming plain .html files to .php just to look "cool"

link|flag
1  
@Kevin, what's wrong with that? Of course, the mime type has no real place in a good URI but it still beats exposing implementation details by a laaarge margin. So yes, if your server doesn't allow/support something like mod_rewrite, do use PHP handlers for html files instead (+ DirectoryIndex!). – Konrad Rudolph Nov 12 '08 at 19:44
show 3 more comments
vote up 2 vote down

I recently rewrote some code written by an employee who obviously didn't know what he was doing.. I ran into a few gems like this..

$sql = "SELECT * FROM attendance_exceptions";
$found = false;

...

$appendSql = " AND YEAR(event_time) = '$_POST['year']' AND MONTH(event_time) = '$_POST['month']' AND DAY(event_time) = '$_POST['day']'";
$temp = array($sql, $appendSql);
$sql = join($temp); 
$found=true;

Creating an array, then join()ing it simply to concatenate a string? I won't get started on the query itself, nor the unsanitized $_POST data.

function verifyQuery($sql, $con) {
    if (!mysql_query($sql, $con)) {
        echo "Error occured in verifyQuery() in sqlfunctions.php <br>";
    	echo "SQL sent : ";
    	echo $sql;
    	echo "<br>Database report: <br>";
        die('Error: ' . mysql_error());
    }
    return mysql_query($sql);
}

Executing mysql_query twice?

Sometimes I wonder if the guy was just trying to make his code look more difficult.

link|flag
1  
judging from that code sample, i don't imagine the guy was using join() for purposes of speed. – ithcy Jun 19 at 19:26
show 2 more comments
vote up 3 vote down

The use of short tags <? ?> rather than <?php ?> because other languages also use the <? syntax.

link|flag
2  
I don't really agree with that – Joshi Spawnbrood Oct 29 '08 at 7:47
4  
What don't you agree with? It can conflict with XML and not all hosts support the use of short tags. It's a deprecated practice. – VirtuosiMedia Oct 29 '08 at 16:11
3  
I agree20% of the time I see code that someone is having problems with they are using <? how much work is just to type the extra 3 characters – Unkwntech Dec 22 '08 at 16:25
5  
It's kind of handy when you're not using something like smarty as a template engine. <?=$var?> is a lot easier than <?php echo $var; ?> – Vatos Jan 19 at 11:39
2  
Agreed with Unkwntech. Those 3 bytes prevent a number of unnecessary headaches. Short tags solve a problem that doesn't exist. – Legion May 6 at 17:15
vote up 11 vote down

Reimplementing the native functions because one did not bother to check the documentation first.

link|flag
2  
This is also because the naming strategy in PHP is virtually non-existant. There's no way to safely 'guess' a method, let alone their parameters. And the PHP devs are also not really interested in fixing this, I gathered. – Erik van Brakel May 6 at 14:36
1  
I'm forever checking the docs just to make sure I have the parameters in the right order. There's no standard. For search functions, sometimes haystack comes first, sometimes needle. Gah! – seanmonstar May 6 at 15:56
1  
PHP's hideous library doesn't help, but this is a problem common in all languages. Half the stories from dailywtf are snippets of someone poorly re-implementing library functions. I was working on a project once my senior year when one of my developers looked at me and asked if I could review his function to convert hex user input to ascii in C, I said nothing and we instantiated code reviews from then on. – marr75 Jun 19 at 16:03
show 1 more comment
vote up 0 vote down

my favourite so far is in some code I was given when they had skipped the idea of Mod_rewrite and instead used the 404 page to return "200 OK" and then process all 404 urls (which were being used as real pages) into parts of a query and build the page from that

$url_parts = explode("/",ereg_replace("(.php|.html|.htm)", "", $_SERVER['PHP_SELF']));

This is just wrong on so many levels.

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

I know this is an old question, but what I perceive as the worst practice hasn't been posted yet.

The worst practice in PHP is having the language's behavior change based on a settings file. Particularly the settings you can't alter at runtime. It severely affects portability.

PHP6 will be great if not just because it removes the magic quotes settings.

As a side note, PHP5 has two ini files. From memory, here are some of the differences between them:

php.ini-dist

  • magic_quotes_gpc = On
  • display_errors = On
  • arg_separator.input = "&"

php.ini-recommended

  • magic_quotes_gpc = Off
  • display_errors = Off
  • arg_separator.input = "&;"
link|flag
show 2 more comments
vote up 0 vote down

There is a lot of things which can be done badly in PHP. However, I find it very bad when people do not use functions, classes, mix php and html, use echo for creating pages and still try to support pre php5 versions.

link|flag
vote up 2 vote down

There are a few. And they usually come together :)

  • No functions or few functions 300+ lines long. Classes? Yeah, right...
  • When code is mixed with HTML the indentation is just random.
  • "select count(*) from users where login = '{$_GET['login']}'...
  • Mixing English with other languages within code
  • Copy & Paste methodology - why bother using functions when you can copy the blob of code, tweak it a bit and it all works?

They are not necessarily php-specific, however those practices tend to show up more frequently in this language.

link|flag
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.