PHP count() 函数

作用:返回数组中元素的数目


$arr = array('coder','ZB','jianshu');
var_export(count($arr));  

输出3

你可能感兴趣的:(PHP count() 函数)