PHP/Data Structure/Nested Array
Версия от 10:37, 26 мая 2010; (обсуждение)
Nested array
<?php
$locations = array("C","A",array("Boston","Des Moines"),"B");
echo count($locations,1);
?><?php
$locations = array("C","A",array("Boston","Des Moines"),"B");
echo count($locations,1);
?>