这样也行?
所有字母的字符串 和 0 都是恒等的?求解释
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> if("e" == 0){ echo "Yes"; } #result: #Yes
echo "e" === 0; <br><font color="#e78608">------解决方案--------------------</font><br>php会自动转换变量的类型,int和string对比那么会将string转成int,如此一来所有字符串都是0,那么结果也就确定了,你可以用===全等来判断 <br><font color="#e78608">------解决方案--------------------</font><br>这样解决更清楚:<br><br>echo intval('e');#转换不成功,默认0(print:0)<br>echo intval('1ds2e');#字符串中有整数出现,则取第一次出现的位置,转换成int (print:1)<br><br>