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.

Edited by Psycho
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.