Jump to content

[SOLVED] NEED HELP for checking if all elements have the same value


Recommended Posts

Posted

How to check if ALL elements inside foreach have this: $pp->my_field == '3' ?

foreach ($items as $p) {
    $pp = $this->pages->get($p->product_id);
    if ($pp instanceof RepeaterPage) $pp = $pp->getForPage();
  }

 

Posted
$all_match = true;
foreach($items as $p) {
    $pp = $this->pages->get($p->product_id);
    if($pp instanceof RepeaterPage) $pp = $pp->getForPage();
    if($pp->my_field != '3') {
        $all_match = false;
        break;
    }
}
// do something according to the value of $all_match

 

  • Thanks 1
  • PWaddict changed the title to [SOLVED] NEED HELP for checking if all elements have the same value

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...