Wednesday, July 3, 2024
HomeLanguagesPhpHow to check for empty string in PHP ?

How to check for empty string in PHP ?

In this article, we will see how to check for empty string in PHP. String is a set of characters. A string is said to be empty, if it contains no characters. We can use empty() function to check whether a string is empty or not.

The function is used to check whether the string is empty or not. It will return true if the string is empty.

Syntax:

bool empty(string)

Parameter: Variable to check whether it is empty or not.

Return Value: If string is empty, it returns true and false otherwise.

Example 1: PHP program to check whether the string is empty or not.

PHP




<?php
  
// Consider a string which is empty
$s = "";
  
// Return a message if string is empty
if(empty($s)) {
    echo "Empty string";
}
else {
    echo "Not empty";
}
  
?>


Output

Empty string

Example 2:

PHP




<?php
  
// Consider a string which is not empty
$s = "Welcome to GFG";
  
// Return a message if string is empty
if(empty($s)) {
    echo "Empty string";
}
else {
    echo "Not empty";
}
  
?>


Output

Not empty

Nicole Veronica Rubhabha
Nicole Veronica Rubhabha
A highly competent and organized individual DotNet developer with a track record of architecting and developing web client-server applications. Recognized as a personable, dedicated performer who demonstrates innovation, communication, and teamwork to ensure quality and timely project completion. Expertise in C#, ASP.Net, MVC, LINQ, EF 6, Web Services, SQL Server, MySql, Web development,
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments