php empty()函数为true的例子

$x = "";
$x = null;
var $x;
$x = array();
$x = false;
$x = 0;
$x = "0";

在这些条件下,empty()函数为true; 

原文地址:https://www.cnblogs.com/feng12345/p/5591694.html