Answers for "php foreach picking up last value"

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

Browse Popular Code Answers by Language