Guest User

Untitled

a guest
Feb 18th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. <?php
  2. $count = 1;
  3. $decrease_count = function() use ( $count ) {
  4. $count--;
  5. };
  6. $decrease_count();
  7. echo $count;
Add Comment
Please, Sign In to add comment