• How To Code School - Online Web Tutorials
  • HTML
  • CSS
  • JavaScript
  • jQuery
  • PHP
  • Web Tutorials
  • Computer Tutorials

Demo: Check if Variable is Null in PHP

<?php
$variable ='HowToCodeSchool.com';
if (is_null($variable))
{
echo "Variable is NULL";
}
else
{
echo "Variable is not NULL";
}
?>

Output

Variable is not NULL.

<?php
$variable = NULL;
if (is_null($variable))
{
echo "Variable is NULL";
}
else
{
echo "Variable is not NULL";
}
?>

Output

Variable is NULL.

Complete Tutorial with Code

More PHP Tutorials

How To Compare Two Strings in PHP Get substring from a string in PHP Replace a Word In String in PHP Convert Special Characters To HTML Entities PHP Find Number of Words in a String in PHP How To Find String Length in PHP How To Convert String To Uppercase in PHP How To Convert String To Lowercase in PHP How to Combine Two Strings in PHP Delete Array Elements By Value in PHP Get First Element Of Array In PHP Remove Numbers From String in PHP Convert Timestamp To Date in PHP Convert a Date to Timestamp in PHP Get Current Page Slug in PHP Check If Session Is Started in PHP Split Sentence Into Words in PHP Remove Last Character From String in PHP PHP Remove Spaces From String Replace Space With Dash in PHP Remove Everything from String Except Numbers Using PHP Get Full Url Address Using PHP Automatic Copyright Year Using PHP Generate 4 Digit Random Number in PHP How To Check If a Number is Prime using PHP Convert Integer to String in PHP
Tags PHP-Demo
Newer Post Older Post Home

Popular

JavaScript Tutorials jQuery Tutorials PHP Tutorials Windows 11 Tutorials HTML MCQS HTTP Codes CSS Tutorials Brands Color Codes

Our Tools

CSS Border Generator CSS Box Shadow Generator CSS Border Radius Generator HTML IFrame Code Generator

About Section

About Us Contact Us YouTube
Contact Form

Name

Email *

Message *

Privacy Policy Disclaimer
Copyright © HowToCodeSchool