Jump to content

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


PWaddict
 Share

Recommended Posts

$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
Link to comment
Share on other sites

  • 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
 Share

  • Recently Browsing   0 members

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