Jump to content

How to not process last value in loop?


Jwest100

Recommended Posts

I have this code which works as expected:

 

foreach($bidders as $val) {

$losing_bidder = ($val->email);

echo $losing_bidder;

}

 

Let us assume the output is:

Bob@email.com

Joe@email.com

Cindy@email.com

Willis@email.com

 

I need to have the loop always ignore (or not echo, or not process) the last value in the array. What adjustment to the code would accommodate that??

 

Thanks much!

Link to comment
Share on other sites

Note that this modifies the original array, so the element is permanently lost.

 

Not if you assign the return value of array_pop() to a variable.

<?php
 
$lastBidder = array_pop($bidders);
 
//$lastBidder is set to the value of the last value
//$bidders now contains all values except the last value
 
?>

But, yeah, if you still need the array to contain all the values for other purposes another process is needed.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.