Skip to content

Instantly share code, notes, and snippets.

@evantishuk
Created April 11, 2012 02:37
Show Gist options
  • Save evantishuk/2356488 to your computer and use it in GitHub Desktop.
Save evantishuk/2356488 to your computer and use it in GitHub Desktop.
or_where fiasco
if(is_array($status))
{
$or = null;
foreach($status as $s)
{
$orders->{"{$or}where"}('status', '=', $s);
$or = 'or_';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment