Skip to content

Instantly share code, notes, and snippets.

@toddbc
Last active August 29, 2015 14:06
Show Gist options
  • Save toddbc/951efc31e45960a90677 to your computer and use it in GitHub Desktop.
Save toddbc/951efc31e45960a90677 to your computer and use it in GitHub Desktop.
continue pattern
foreach ($items as $item)
{
if (!$item->isActive())
continue;
// do stuff with $item
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment