你知道为什么 = count(false) ?>
返回 1
吗?
Do you know why <?= count(false) ?>
returns 1
?
它的指定行为:
如果 var 不是数组或实现了 Countable 的对象接口,返回1.
If var is not an array or an object with implemented Countable interface, 1 will be returned.
根据http://php.net/manual/en/function.count.php
这篇关于为什么 count(false) 返回 1?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!