Jump to content

Simple isset or is_null question


Syphon

Recommended Posts

Which is the more "safer/preferred" method to use? As long as the logic works fine, they both accomplish the same outcome. But I just want to know about any "special" cases when one should be used over the other. For example

 

if(isset($_REQUEST["UserID"]) && isset($_REQUEST["Action"]) )

 

or

 

if(!is_null($_REQUEST["UserID"]) && !is_null($_REQUEST["Action"]) )

Link to comment
https://forums.phpfreaks.com/topic/74015-simple-isset-or-is_null-question/
Share on other sites

if you need to check if its set then use isset, if you need to know if its null then use is_null..

with $_REQUEST i more often than not use isset, or !empty..

 

hope that helps

 

as a note, is_null isn't the same as isset..

 

ie

$test = NULL;

isset but is also null

 

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.