Home > php教程 > php手册 > empty函数

empty函数

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-06 19:34:50
Original
1442 people have browsed it

empty对一下数据的判断是否为空. 无 ?php $str = ''; $str1 = null; $str2; $str3 = array(); $str4 = false; $str5 = 0; if (empty($str)) { echo "true"; //输出true } if (empty($str1)) { echo "true"; //输出true } if (empty($str2)) { echo "true"; //

empty对一下数据的判断是否为空.
<?php
    $str = '';
    $str1 = null;
    $str2;
    $str3 = array();
    $str4 = false;
    $str5 = 0;
    if (empty($str)) {
        echo  "true";    //输出true
    }
    if (empty($str1)) {
        echo  "true";    //输出true
    }
    if (empty($str2)) {
        echo  "true";    //输出true
    }
    if (empty($str3)) {
        echo  "true";    //输出true
    }
    if (empty($str4)) {
        echo  "true";    //输出true
    }
    if (empty($str5)) {
        echo  "true";    //输出true
    }
     if (empty($str6)) {
        echo  "true";    //输出true
    }
?>
Copy after login
Related labels:
Statement of this Website
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
Latest Issues
File is empty
From 1970-01-01 08:00:00
0
0
0
The host file is empty
From 1970-01-01 08:00:00
0
0
0
Why is my host file empty?
From 1970-01-01 08:00:00
0
0
0
empty is more strict than isset
From 1970-01-01 08:00:00
0
0
0
gosts content is empty
From 1970-01-01 08:00:00
0
0
0
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template