5 lines
92 B
Text
5 lines
92 B
Text
$things = ["Apple", "Banana", "Coconut"];
|
|
|
|
foreach ($things as $thing) {
|
|
echo $thing;
|
|
}
|