摘要:PHP - array 大小
http://php.net/manual/en/function.count.php
php array 大小的取法為
count(var_array)
發現有趣的事,他還有分遞迴的取大小方式,可以遞迴算第二層、第三層陣列,(所有元素大小,不只算第一層大小多少)
count($food, COUNT_RECURSIVE);
其他的相關函式如下
- is_array() - Finds whether a variable is an array
- isset() - Determine if a variable is set and is not NULL
- strlen() - Get string length