Jump to content

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

 

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.