Add the text "indexed array" in example comment (#19254)

pull/19339/merge
Shahriar Rashid Mahmud 2018-10-15 23:44:21 +06:00 committed by Todd Chaffee
parent 8db99b7c16
commit 6ac087f16b
1 changed files with 1 additions and 0 deletions

View File

@ -13,6 +13,7 @@ Here is an example:
```
<?php
// array without keys
// This array is also an example of "indexed array"
$bikes = array("Suzuki","BMW","Yamaha");
echo "I like " . $bikes[0] . ", " . $bikes[1] . " and " . $bikes[2] . ".";
?>