Skip to content

Instantly share code, notes, and snippets.

@zanematthew
Created August 29, 2012 20:20
Show Gist options
  • Save zanematthew/3518338 to your computer and use it in GitHub Desktop.
Save zanematthew/3518338 to your computer and use it in GitHub Desktop.
Ways to prevent "deep nesting"
<?php
foreach( $items as $item ){
if ( ! $item['name'] )
continue;
print $item['name'];
// more code
// and stuff going on here
// and here
}
// Is the same as...
foreach( $items as $item ){
if ( $item['name'] ){
print $item['name'];
// more code
// and stuff going on here
// and here
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment