まくまくPHPノート
配列のサイズを調べる (count)
2012-01-22

PHP の配列のサイズを調べるには、count() を使用します。

$arr = array(100, 200, 300);
$size = count($arr);   // 3
2012-01-22