vote up 1 vote down star
1

I am writing a sql query creator using some parameters. While doing that ,I came across this problem. In java , Its very easy to detect the last element of an array from inside the for loop by just checking the current array position with the array length.

for(int i=0; i< arr.length;i++){

     boolean isLastElem = i== (arr.length -1) ? true : false;        

}

php has some different fashion. They have non integer indexes to access arrays. So you must iterate over an array using foreach loop. But it becomes very problematic when you need to take some decision (in my case to append or/and parameter while building query).

I am sure there must be some standard way of doing this.

How do you solve this problem normally in php ?

flag

80% accept rate
Are you trying to determine if you should concat an "AND" or "OR" between parts of a where clause? – Darryl Hein Mar 20 at 7:32
just pointing out that you should store the total in a variable instead of calling a method for every iteration. for(int i=0, int t = arr.length; i<t;i++). – OIS Mar 20 at 12:08

6 Answers

vote up 9 vote down check

It sounds like you want something like this:

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

That being said, you don't -have- to iterate over an "array" using foreach in php.

link|flag
I think I will go for this solution as it is almost similar to the code I posted. Even Jeremy's answer is well fit but I think it got little complex compared to this one. I have not ran any tests but I guess this answer shall be faster as it is not extracting array of keys.This shall have O(1) speed – Vaibhav Kamble Mar 20 at 7:09
Shouldn't $i = 1 because Count starts at 1 and not 0? – Paul Sheldrake Jul 15 at 21:52
vote up 5 vote down

You could get the value of the last key of the array using end(array_keys($array)) and compare it to the current key:

$last_key = end(array_keys($array));
foreach ($array as $key => $value) {
    if ($key == $last_key) {
        // last element
    } else {
        // not last element
    }
}
link|flag
+1 I agree - the other solutions rely on the array having numeric indexes. – Patrick Glandien Mar 20 at 6:07
In my own defense, my answer doesn't rely on the array having numeric keys :) – Richard Levasseur Mar 20 at 6:53
string comparison is slower then integers, and not always accurate when comparing strings to integers (you should at least have used ===). Im voting this down. – OIS Apr 1 at 11:10
vote up 1 vote down

you can do a count().

for ($i=0;$i<count(arr);$i++){
    $i == count(arr)-1 ? true : false;
}

or if you're looking for ONLY the last element, you can use end().

end(arr);

returns only the last element.

and, as it turns out, you CAN index php arrays by integers. It's perfectly happy with

arr[1];
link|flag
vote up 1 vote down

You can still use that method with associative arrays:

$keys = array_keys($array);
for ($i = 0, $l = count($array); $i < $l; ++$i) {
    $key = $array[$i];
    $value = $array[$key];
    $isLastItem = ($i == ($l - 1));
    // do stuff
}

// or this way...

$i = 0;
$l = count($array);
foreach ($array as $key => $value) {
    $isLastItem = ($i == ($l - 1));
    // do stuff
    ++$i;
}
link|flag
vote up 1 vote down
$toEnd = count($arr);
foreach($arr as $key=>$value) {
  if (0 === --$toEnd) {
    echo "last index! $value";
  }
}

or the best way is probably this if you still execute the other loop code

foreach($arr as $key=>$value) {
  //something
}
echo "last index! $key => $value";
link|flag
In this example, it will perform the --$toEnd in every iteration in the loop, so I would recommend moving that outside of the foreach loop so you can perform a direct comparison on an already calculated value. – Sohnee Apr 1 at 9:39
Of course it will perform the --$toEnd for every iteration, thats the point. If I moved it outside the loop, it would not work anymore. – OIS Apr 1 at 11:02
vote up 0 vote down

You could also do something like this:

$endKey = key(end( $elements ));
foreach ($elements as $key => $value)
{
     if ($key == $endKey) // -- this is the last item
     {
          // do something
     }

     // more code
}
link|flag
end returns the value not the array, so the way you made it doesnt work. string comparison is also slower then integer. – OIS Apr 1 at 11:06
You are right. it should be end($elements); $endKey = key($elements); – KOGI Apr 1 at 22:13

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.