Jump to content

PHP no nos


waynew

Recommended Posts

  • Replies 77
  • Created
  • Last Reply
  Quote
What bad practises/mistakes/misconceptions do you see time and time again - in regards to PHP?

My personal favourite is a lack of standards in a script. I see code that is a complete mish-mash of the following:

$VAR1 = "foo";
$myName = "Joe";
$my_surname = "Bloggs";
$NAME = $myName." ".$my_surname;

function printMyName($name) {

}

function save_my_name($name) {

}

Link to comment
https://forums.phpfreaks.com/topic/188940-php-no-nos/page/4/#findComment-1001215
Share on other sites

[quote]My personal favourite is a lack of standards in a script. I see code that is a complete mish-mash of the following:

 

Well, to be fair a programmer's style changes over time.  If a project is long-lived, then there is a good chance the programmer may make stylistic changes over the course of it.  If the project is financially backed and not just a past-time or pet-project, then there is no budget (time or money) to bother with frivolous modifications such as the case of variables.

Link to comment
https://forums.phpfreaks.com/topic/188940-php-no-nos/page/4/#findComment-1001452
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.