Problem regarding arrays PHP | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Problem regarding arrays PHP

<?php $people = array( 'online'=>array('David', 'Amy'), 'offline'=>array('John', 'Rob', 'Jack'), 'away'=>array('Arthur', 'is'), 'busy'=>('Godlike') ); echo $people['online'][0]; echo "<br />"; echo $people['away'][1]; echo "<br />"; echo $people['busy'][0]; ?> I know that i did not put array after busy but someone can explains me why it is showing me just G ? ( the first letter of godlike ).

24th May 2018, 7:51 AM
Andyyy
1 Answer
0
A string is similar to an array in that you can use square brackets to get individual characters. $people["busy"] gives you the string "Godlike" (not the array ["Godlike"] as you pointed out), so $people["busy"][0] gives you the first element of "Godlike" which is 'G'!
24th May 2018, 8:17 AM
Schindlabua
Schindlabua - avatar