DEV Community

Using isset() and empty() hurts your code

Aleksi Kauppila on June 08, 2019

It's a known flaw in PHP that functions in standard library are inconsistent. Some of them have a terrible API that may return anything from object...
Collapse
 
addiks profile image
Gerrit Addiks

I cannot say that i agree with the core message of this article. This is written from a mathematical standpoint, when in the majority of cases (at least in PHP) you are expressing semantic facts that are part of a model, not mathematical formulas.

A very important thing to understand when dealing with PHP is that you are not writing kernel-modules or 3D-engines or DBMS's or other performance-driven programs with it. You are using PHP for web-shops, for blogs or for accounting-, advertising- or logistics-web-apps. You are using it for model driven development, for software that tries to emulate a part of "real-life", and that is where semantics are king. The reason why high-level programming was invented was to give us better tools to express the semantics of a model in programming.

In many cases i actually do want to know if something is empty, no matter the technicals. For example: I want to know if the shopping-cart of my user is empty, not if the shopping cart is equal to null (which does not make semantic sense as a sentence). I don't care if at that point my cart is an object, an array or a decimal. I also don't care if the cart is NULL or "0" or an empty array, in all cases the cart can be considered to be empty. Just tell me if the cart is empty or not.
The reason why i often prefer "empty" is that it directly expresses the semantics of the model.

The same argument applies to "isset", it is a semantic operator that tells me if something is there. If it is NULL, it is defined to be "not there", which is exactly what i want to know. In your example-code above, i find the "isset" variant way easier to read.

The PHP expression

if (isset($payload['username'])) ...
Enter fullscreen mode Exit fullscreen mode

directly translates to "If the payload has a username, then ...", which is very easy to read and understand.
In contrast, the PHP expression

if (array_key_exists('username', $payload')) ...
Enter fullscreen mode Exit fullscreen mode

translates to "If the payload has an existing key that is 'username', then ...", which is a lot more convoluted and harder to understand that the "isset" version. But more importantly, it is not a statement that is taken from the model. Who talks like that?!

An even better way to express a check for an empty cart would probably be methods (like "isEmpty") on an shopping-cart object, but in reality (and especially lagacy PHP codebases) you do not always have your semantics expressed in objects, sometimes you have to deal with plain old primitives.

I am onboard with trying to reduce the possible bugs, but this is in my opinion a bad trade-off. You are making the code safer against unexpected (scalar) types, but at the same time you are making it harder to read and to understand by other (mostly junior-) developers because the wording does not relate to the model anymore. That means that when other people try to modify the code (and they will!), they are more likely to be confused by the code and more likely to introduce bugs (compared to when they could just read the code like plain fact-expressing English).
If you want to prevent bugs then the most important thing to do is to make the program easier to understand, problematic corner-cases come second.

Collapse
 
aleksikauppila profile image
Aleksi Kauppila

Thanks for your take Gerrit!

I don't care if at that point my cart is an object, an array or a decimal. I also don't care if the cart is NULL or "0" or an empty array, in all cases the cart can be considered to be empty. Just tell me if the cart is empty or not.

I didn't understand this. Could you provide me some sample code, thanks!

Collapse
 
makr8100 profile image
Mark Gullings

On your second paragraph speak for yourself... I develop a factory shop control app mostly on a LAMP stack with ERP integration on an IBMi DB2. Believe me there are plenty of use cases for high DBMS and performance-driven apps in PHP.

As for the sentiment of your comment, yes there are many times isset and empty are useful, and understanding of how they are used is the only requirement for using them. They're my preferred way to test because I know what to expect.

Collapse
 
tchaflich profile image
Thomas C. Haflich

The main time I find myself using isset() is for medium-to-big nested arrays, because it evaluates to false instead of throwing an exception if one of the more middling keys doesn't exist.

Eliminates a couple bothersome checks for if ($arr['foo'] && $arr['foo']['bar'] && $arr['foo']['bar']['baz']...), since you can just if (isset($arr['foo']['bar']['baz'][...]). It's not necessary, but convenient for working with more complex data structures.

I can't really think of other times I've needed to use it. Mostly strict equality checks and array_key_exists() work without issue.

Collapse
 
vlasales profile image
Vlastimil Pospichal

Deep structures are unwanted in OOP. Maybe you use it for read a configuration, but read and inject a subtree is more explaining.

Collapse
 
nelo_mf profile image
Manuel Fernandez

I get the point, but I think isset and empty can be very helpful when you're dealing with an existing codebase, given the fact that you may not understand it fully, or that the code may be doing something different than what you expected.
Great post anyways! I found your point of view very interesting.

Collapse
 
krlove profile image
Andrii Mishchenko • Edited

Hi Aleksi,

Good article, thank you. For me it turned something that was more than a "vague feeling" into reasonable position.

There is one thing I'd like to add. In the example:

$customer = Customer::find($customerId);

imo $customer === null is the only reasonable check. instanceof should be used only when we expected find method might return several various instances. In other words, by checking with instanceof we ask "Who are you?", and checking for null - "Do you exist?". And these checks doesn't exclude each other and could be combined when needed.

Collapse
 
johncip profile image
jmc • Edited

Just a style thing, but I agree... e.g. $customer instanceof Customer is less explicit than a null test and won't work with things like null object pattern or duck typing.

Collapse
 
aleksikauppila profile image
Aleksi Kauppila

instanceof should be used only when we expected find method might return several various instances.

This actually seems to be case with Laravel, which is what i had in mind when writing this. Bad interfaces and accidental complexity makes you do weird workarounds. :)

Collapse
 
davidnash profile image
David Nash

I've been using PHP for around 15 years. I've never really liked isset() and empty(), mainly because of their names. empty() should be isempty().

Then there are functions like is_int() which use another name style. (I'd prefer they were all named like this).

I STILL have to look up those function names every time. Now I'm not going to bother :-)

And I didn't know about array_key_exists()... Thanks!

Collapse
 
jsn1nj4 profile image
Elliot Derhay

Yeah the mixed naming conventions were starting to annoy me too recently. Haven't been using the language nearly as long as you have. But I would hope they would do something like rename all of the runonname functions the other way, alias the old names to the new ones, and then include a deprecation message for the old names and move on. At least that way it would be backwards compatible for however long before they're removed entirely.

Would also prefer renaming some functions like strlen to string_length or at least str_length.

Collapse
 
moopet profile image
Ben Sinclair

I've been using PHP since version 3 and still have to look up the order of needles and haystacks, or the order in array_map vs array_filter every time.

Collapse
 
dhandspikerwade profile image
Devin Handspiker-Wade

The issue is when working with large arrays or being called frequently, array_key_exists is 2x to 10x slower than isset.

Collapse
 
aleksikauppila profile image
Aleksi Kauppila

Interesting, thanks! Do you have a benchmark available somewhere?

Collapse
 
dhandspikerwade profile image
Devin Handspiker-Wade • Edited

It's a simple benchmark with many examples, but to quote one of them provided on the PHP manual:

Benchmark (100000 runs):
array_key_exists() : 205 ms
is_set() : 35ms
isset() || array_key_exists() : 48ms
Enter fullscreen mode Exit fullscreen mode
Collapse
 
arturm11 profile image
arturm11

Already fixed in 7.4

Collapse
 
dhandspikerwade profile image
Devin Handspiker-Wade

Interesting! Might need to give 7.4 a look sooner than expected.

Collapse
 
nikoheikkila profile image
Niko Heikkilä

Good post. 👍

Laravel (Eloquent) ships with a nice findOrFail() method for models which throws a ModelNotFoundException when query does not return results. This has been my go-to approach instead of null-checks. I try to communicate with exceptions as much as possible - especially when I'm building a library - helps with debugging both in production and in development.

Collapse
 
aleksikauppila profile image
Aleksi Kauppila

Thanks Niko!

I enjoy using your approach as well! It forces the client to react in case i cannot deliver what i'm asked to. It does a really good job of exposing problems immediately when they happen. I do know that this approach doesn't warrant the admiration of every peer, not sure why though :D Well, hopefully someone will educate me on this one day.

Collapse
 
hpwesterlund profile image
Hans Westerlund

I know this is a dated article but regarding isset I feel the need to point out the difference between a language construct and a function!

isset isn't a function but a language construct, if you don't know the difference look it up.

TLDR: isset is a lot faster than even built-in functions as is_null. So imho isset should always be preferred cause performance does matter even for websites with moderate loads but certainly for any processing however light.

Collapse
 
pda_code profile image
Takis Antonopoulos • Edited

isset, empty(), is_int e.t.c are examples of functions of a language with POOR design decisions (at least at the early age of PHP). You have to be precise about what you are offering by a function.

I wish they are removed from PHP and all old snake cased funcions

Collapse
 
artemgoutsoul profile image
Artem Goutsoul

Good article! Not totally applicable for legacy code though. Until you have strict typing for properties, parameters and return values, not using isset() or empty() will make the code more verbose and actually less readable and less maintainable.

Collapse
 
emanuelvintila profile image
Emanuel Vintila

Use argument type hints and return type hints in every method and function you write.

100% agree with this statement. If you're not using type hints you're probably stuck in 2012.

Collapse
 
aleccaputo profile image
Alec Caputo

A situation where isset makes sense for me is checking $_POST. It's completely legitimate for a key to not be have been sent by the client.

Collapse
 
aleksikauppila profile image
Aleksi Kauppila

In this case you’d be interested in both questions: does a value exist and is it something useful. I agree, it makes sense.

Collapse
 
lawrencejohnson profile image
Lawrence

You could use filter_input and get much more useful info back than isset.

Collapse
 
fabiorf22 profile image
Fabio Rocha

Wow very nice, tnks.

Collapse
 
patrick_twitts profile image
Patrick

Never dive in this questions.. good conclusion.. will take your advice. Cheers

Collapse
 
jeroka profile image
Esteban Rocha

Thanks @aleksikauppila This was very enlightening.

Collapse
 
aleksikauppila profile image
Aleksi Kauppila

Thanks! Lots of good rules you have there 👍