GWibisono

malas ah...

Jul 25th, 2015
297
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.17 KB | None | 0 0
  1. <?php
  2. $i=100;
  3. $j=120;
  4. echo "<br/>i=$i ; j=$j";
  5. $i=hitung($i,$j);
  6. echo "<br/>i=$i ; j=$j";
  7.  
  8. function hitung($i, &$j){
  9.    $total=$i+$j;
  10.    $j+=20;
  11. return $total;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment