This site is mobile accessible. Press the "Tap Here" button to use a different font-size.


Smartphone icons created by Freepik - Flaticon

PHP Iterables

Using Iterables

a, b, c

<?php
function getIterable():iterable {
  return ["a, ", "b, ", "c"];
}

$myIterable = getIterable();
foreach($myIterable as $item) {
  echo $item;
}
?>