Answers for "check if foreach loop ran more than once"

PHP
1

php foreach if last item

$numItems = count($arr);
$i = 0;
foreach($arr as $key=>$value) {
  if(++$i === $numItems) {
    echo "last index!";
  }
}
Posted by: Guest on May-19-2020

Code answers related to "check if foreach loop ran more than once"

Browse Popular Code Answers by Language