Advertisement
martinms

8 Jenis jenis looping

Jul 23rd, 2021
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. <?php
  2.  
  3. for ($i = 0; $i < 10; $i++) {
  4.   //kode disini
  5. }
  6. for ($i = 0; $i < 10; $i++) : //colon syntax
  7.   //kode disini
  8. endfor;
  9.  
  10. foreach (array() as $tunggal) {
  11.   //
  12. }
  13. foreach (array() as $tunggal) :
  14.   //
  15. endforeach;
  16.  
  17. while (true) {
  18.   //
  19. }
  20. while (true) :
  21.   //
  22. endwhile;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement