我想计算一些数组中的值的数量.
count和之间有什么区别sizeof?
count
sizeof
$recips = array(); echo count($recips); echo sizeof($recips);
php
php ×1