Advertisement
punjangga

Variabel Global dan Variabel Local dua

Dec 8th, 2016
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. <?php
  2. function update_counter(){
  3. global $counter;
  4. $counter++;
  5. }
  6.  
  7. $counter = 10;
  8. update_counter();
  9. echo $counter;
  10. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement