Guest User

Untitled

a guest
Dec 12th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. <?php
  2.  
  3. foreach( $items as $item ){
  4.  
  5. if ( ! $item['name'] )
  6. continue;
  7.  
  8. print $item['name'];
  9. // more code
  10. // and stuff going on here
  11. // and here
  12. }
  13.  
  14. // Is the same as...
  15.  
  16. foreach( $items as $item ){
  17.  
  18. if ( $item['name'] ){
  19. print $item['name'];
  20. // more code
  21. // and stuff going on here
  22. // and here
  23. }
  24. }
Add Comment
Please, Sign In to add comment