I wrote a code like this
<?php
$i[1] = array();
$i[1][0] = 'U';
$i[1][1] = 'V';
echo $i[0][0] ;
echo $i[0][1] ;
?>
But there is nothing output~
and if U use print like this
print <<<EOT
$item[0][0]
EOT;
it will show like this:
[0]
Would anybody tell me why and how to do?
Thanks