Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.21 KB | None | 0 0
  1. if ($something):
  2.    echo 'one conditional line of code';
  3.    echo 'another conditional line of code';
  4.  
  5. vs
  6.  
  7. if ($something) {
  8.    echo 'one conditional line of code';
  9.    echo 'another conditional line of code';
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement