Home > Backend Development > PHP Tutorial > 反了解决方法

反了解决方法

WBOY
Release: 2016-06-13 10:23:41
Original
822 people have browsed it

反了

PHP code
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->$a = 0;function test($a){    if($a==''){        return true;    }else{        return false;    }}
Copy after login


这个函数为什么反回true呢

------解决方案--------------------
var_dump($a==''); 返回什么
------解决方案--------------------
∵ $a = 0 等于空
∴ $a == '' 成立

$a === '' 就不成立了
------解决方案--------------------
0,false,‘’这三个都是 == 的,你可以用 === 来判断。
------解决方案--------------------
PHP code
0 == null == false == '' == ""当然全等都不成立,暂时就想到这么多<br><font color="#e78608">------解决方案--------------------</font><br>參考php手冊的empty函數,和這差不多。<br>bool empty ( mixed var )<br>如果 var 是非空或非零的值,则 empty() 返回 FALSE。换句话说,""、0、"0"、NULL、FALSE、array()、var $var; 以及没有任何属性的对象都将被认为是空的,如果 var 为空,则返回 TRUE。  <br><br><br><font color="#e78608">------解决方案--------------------</font><br>
Copy after login
探讨
引用:

∵ $a = 0 等于空
∴ $a == '' 成立

$a === '' 就不成立了

== 和===有啥区别
Related labels:
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template