Advertisement
Guest User

Untitled

a guest
Feb 8th, 2018
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.21 KB | None | 0 0
  1. <?php
  2.  
  3. function1();
  4. function2();
  5. if (function3()) {
  6.     function4();
  7. }
  8.  
  9. function function1() {
  10.     stuff
  11. }
  12. function function2() {
  13.     stuff
  14. }
  15. function function3() {
  16.     stuff
  17. }
  18. function function4() {
  19.     stuff
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement