Answers for "loop through array php to given index"

PHP
1

php loop through array

$letters = ['a','b','c'];
foreach ($letters as $item) {
  echo $item;
}
Posted by: Guest on October-01-2020

Code answers related to "loop through array php to given index"

Browse Popular Code Answers by Language