search
HomeBackend DevelopmentPHP ProblemHow to use empty() in PHP to check whether a variable is empty

How to use empty() in PHP to check whether a variable is empty

In the daily use of PHP, we often need to determine whether a variable is empty. PHP provides us with a built-in function empty() to help us check whether a variable is empty. First, let’s take a look at the syntax format:

Syntax:

empty  ( mixed $var )
  • $var: Variables that need to be judged

  • Return value: When a variable does not exist, or its value is equal to false, return true, otherwise return false.

PS: Before PHP 5.5, empty() only supported variables, and checking non-numeric string offsets would return true, PHP5.5 supports expressions.

Actual use:

1. Determine a variable that does not exist:

<?php
    var_dump(empty($a));
?>
输出:bool(true)

2. Determine a variable Unassigned variable:

<?php
$a;
var_dump(empty($a));
?>
输出:bool(true)

3. Judge the value of the variable to be equal to false:

<?php
$a="";//0、"0"、NULL、FALSE、 array()
var_dump(empty($a));
?>
输出:bool(true)

4. Use empty() on the string offset

<?php
$expected_array_got_string = &#39;somestring&#39;;
var_dump(empty($expected_array_got_string[&#39;some_key&#39;]));
var_dump(empty($expected_array_got_string[0]));
var_dump(empty($expected_array_got_string[&#39;0&#39;]));
var_dump(empty($expected_array_got_string[0.5]));
var_dump(empty($expected_array_got_string[&#39;0.5&#39;]));
var_dump(empty($expected_array_got_string[&#39;0 Mostel&#39;]));
?>
输出:
bool(true)
bool(false)
bool(false)
bool(false)
bool(true)
bool(true)

Recommendation: 2021 PHP interview questions summary (collection)》《php video tutorial

The above is the detailed content of How to use empty() in PHP to check whether a variable is empty. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undress AI Tool

Undress AI Tool

Undress images for free

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.