Jump to content

Recommended Posts

How can I check if a function has returned false.. I know theirs the following way:

 

if (!checkdate($month, $day, $year)) {
//the function has returned false
}

 

But is their another way (beside using the ! operator) perhaps === FALSE (not sure if that'd work so asking)?

Link to comment
https://forums.phpfreaks.com/topic/212323-check-if-function-returns-false/
Share on other sites

if (function($params) === false) // check if the return value is EXACTLY false, so the type is required to be boolean.

if (function($params) == false) // Just requires the data to be null, 0, '' or false. 

if (!function($params)) // Just requires the data to be null, 0, '' or false. 

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.