PHP is_null()

📔 : PHP 🔗

is_null() method check करता है , कि कोई variable null है या नहीं। यह Boolean value true / false ही return करता है।

PHP is_null Syntax

is_null( mixed $value );

  1. mixed $value | required : value जिसे आपको check करना है। चूंकि यह function सिर्फ check करता है इसलिए आप किसी भी type की value pass कर सकते हैं।

    Understanding mixed Type

    mixed type का मतलब होता है , कि आप अपनी need के according किसी भी type (String , Boolean , Array , Class , Numeric) की value pass कर सकते हैं। यह जरूरी नहीं है कि कोई special type की value ही pass करें।

  2. Return Value : अगर value null है , तो true return होता है और बाकी conditions में false return होता है।


PHP is_null Example

File : php_is_null.php

Copy Fullscreen Close Fullscreen
<?php 
  $a = null;
  echo is_null($a) ? '$a is null' : '$a is null';
  /*Another example*/
  echo "<br>";
  $b;
  echo is_null($b) ? '$b is null' : '$b is not null';
  echo "<br>";
  $c = ' ';
  echo is_null($c) ? '$c is null' : '$c is not null';
?>
Output
$a is null
$b is null
$c is not null

Related Topics :

Rahul Kumar

Rahul Kumar

Hi ! My name is Rahul Kumar Rajput. I'm a back end web developer and founder of learnhindituts.com. I live in Uttar Pradesh (UP), India and I love to talk about programming as well as writing technical tutorials and tips that can help to others.

Get connected with me. :) LinkedIn Twitter Instagram Facebook