如何运用PHP函数count()求出数组的长度
新学PHP语言的新手们在使用PHP进行编程时经常会与数组打交道。那么,我们这时就应当运用PHP函数count()来帮助我们计算出数组的长度。本文通过一个小例子来为大家说明PHP函数count()的具体用法。
int count ( mixed var)返回 var 中的单元数目,通常是一个 array(任何其它类型都只有一个单元)。
如果 var 不是数组类型,将返回 1(例外:count(NULL) 的结果是 0)。
警告
PHP函数count()对没有初始化的变量返回 0,但对于空的数组也会返回 0。用 isset() 来测试变量是否已经初始化。
例子 1. count() 例子
相关推荐
zhouyuqi 2020-09-15
songshijiazuaa 2020-09-01
zyyjay 2020-11-09
xuebingnan 2020-11-05
samtrue 2020-11-22
stefan0 2020-11-22
yifangs 2020-10-13
songshijiazuaa 2020-09-24
hebiwtc 2020-09-18
天步 2020-09-17
83911535 2020-11-13
whatsyourname 2020-11-13
zhouyuqi 2020-11-10
Noneyes 2020-11-10
mathchao 2020-10-28
王志龙 2020-10-28
wwwsurfphpseocom 2020-10-28