<?PHP
// php การนับจำนวนของ Array ด้วย count()
// ตัวอย่างที่ 1
// ตัวแปร $programming_array เก็บค่า Array ที่เป็นภาษาที่ใช้เขียนโปรแกรม
$programming_array = array('php', 'c++', 'vb','java', 'c#', 'perl');
// ใช้ Function count() ในการนับค่า Array
echo count($programming_array); // ผลลัพพ์ = 6
?>
