Nasıl anahtar numarası ve dize olduğu diziler yapmak için.
<?php $array = array ( 'test' => 'thing', 'blah' => 'things' ); echo $array[0]; // thing echo $array[1]; // things echo $array['test']; // thing echo $array['blah']; // things ?>