开发者

How do you handle PHP notice (error)

The following code generates a no开发者_如何学Ctice if $n is not set. Solving it requires an additional statement (isset($n)) or to "declare" the $n ($n=''). But what consequences does this notice have? The below code is a lot neater and lets say we turn error_reporing off in production no difference is visible frontend. Does something bad follows? Prestanda, readability etc? (sorry for the bad english)

if($n==1){
   //do something
}


There is no "consequence" to notices, per sé, other than bad coding practices. You should be coding with error_reporting set to E_ALL on your development machines, so obviously the consequence there is a lot of notices...

I would argue that your code actually isn't neat, because you're testing a variable which doesn't get set previously.

A suggestion would be something like this:

<?php
if (!empty($n) && $n == 1)
{
    //do something
}

empty checks for existence automatically (just like calling isset before it) but it also checks to make sure your value doesn't evaluate as false with values like false, 0, or '' (empty string).


A notice means that while your code will work as expected, it isn't written "like it should be". It's like the compiler telling you "I know what you mean here and I can do it, but you shouldn't rely on this. Please write it differently so I don't have to make assumptions".

Therefore a notice by itself doesn't mean that something bad happens most of the time. However, I wouldn't call anyone who accepts notices in their code a professional programmer because fixing the notices is a pretty simple task and not having any notices says that you understand the language's basics well. If someone can't or don't want to do even this much, it says something about them.

In your specific example, something like this should be done:

$n = null; // or some other appropriate initial value

// possibly change the value of $n here

if($n==1) {
    //do something
}

Note that by writing the extra $n = null, you are not making the program any different as far as the compiler is concerned (it will end up doing that itself at the same time it gives out the notice anyway). But you are making it very different as far as someone reading the code is concerned: with this code they won't have a "WTF did this $n come from???" moment.


Normally in the production environments all error reporting which come strait from PHP libraries is turned off or parsed before showing to end user (it`s still logged).

There are no consequences in notice, it`s just notice to developer that something bad could happen in this place, in your example initializing the variable with value.


I encountered one function that handling "PHP Notice" can be beneficial.

The function is:

geoip_record_by_name()

This function return "false" and send "PHP Notice" on IP's that do not find in its database. The standard is that IP's reserved for internal networks, or Localhost will not be found. As a horrible practice this function treat this normal condition as bed coding. WRRRRR!!!

There is solution to filter local IP,s before sending to this function ( assuming that all other addresses are covered by geoip database).

I consider this geoip_record_by_name() as pest function that handling of "PHP Notice" is justified.

Discussion related to this pest function

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜