mramine364

pass by reference

Jan 25th, 2016
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.09 KB | None | 0 0
  1. <?php
  2. function foo(&$var)
  3. {
  4.     $var++;
  5. }
  6.  
  7. $a=5;
  8. foo($a);
  9. echo $a; // $a = 6
  10. ?>
Advertisement
Add Comment
Please, Sign In to add comment