Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8835631
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T09:18:11+00:00 2026-06-14T09:18:11+00:00

Possible Duplicate: is_null($x) vs $x === null in PHP In the following context !==

  • 0

Possible Duplicate:
is_null($x) vs $x === null in PHP

In the following context !== null, !is_null() and isset() all produce the same result:

$foo = null;

function foo() {
    if ($this->foo !== null) {
        ...
    }
    if (!is_null($this->foo)) {
        ...
    }
    if (isset($this->foo)) {
        ...
    }
}

Which one is the quickest and which would you recommend in that context?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T09:18:12+00:00Added an answer on June 14, 2026 at 9:18 am

    If you’re not sure that the variable exists, use isset.

    Example:

    $content = (isset($_POST['content'])) ? $_POST['content'] : null;
    

    Otherwise, use strict comparison to null.

    if ($content === null) { }
    

    (Really, I’m just pushing my opinion on your with the strict comparison. I just think it looks better than is_null, and it’s probably an extremely small bit faster.)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: What's the difference between is_null($var) and ($var === null)? PHP has two
Possible Duplicate: PHP - Calling functions with multiple variables function test($var1=null, $var2=null, $var3=null){ //smart
Possible Duplicate: Is NULL always zero in C? Following code: char *p1 = 0;
Possible Duplicate: Is JavaScript's Math broken? Adding fractions number yields different result in PHP
Possible duplicate of Reference - What does this symbol mean in PHP? What does
Possible Duplicate: Sort array of objects sort an object array in php EDIT: This
Possible Duplicate: Can I use operators as function callback in PHP? Is it possible
Possible Duplicate: What's this kind of syntax in PHP? What is the name for
I know you guys going to say this might be possible duplicate to PHP
Possible Duplicate: php == vs === operator i have the following code fragment and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.