“PHP Get Last Index End in foreach” Code-Antworten

PHP Get Last Index End in foreach

$numItems = count($arr);
$i = 0;
foreach($arr as $key=>$value) {
  if(++$i === $numItems) {
    echo "last index!";
  }
}    
Borma

PHP -Index des letzten Elements im Array

<?php

$source_array = [
  'key1' => 'value1',
  'key2' => 'value2',
  'key3' => 'value3'
];

echo "Last index: " . array_key_last($source_array);

?>
Rich Raccoon

Ähnliche Antworten wie “PHP Get Last Index End in foreach”

Fragen ähnlich wie “PHP Get Last Index End in foreach”

Weitere verwandte Antworten zu “PHP Get Last Index End in foreach” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen