Created
November 18, 2017 15:08
-
-
Save kuredev/e00ab2be31740f4960ae243b76bd6853 to your computer and use it in GitHub Desktop.
リファレンス渡しの小さなメモ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| function test1($n){ | |
| $n++; | |
| } | |
| function test2(&$n){ | |
| $n++; | |
| } | |
| $num = 0; | |
| test1($num); | |
| echo $num.PHP_EOL; | |
| test2($num); | |
| echo $num.PHP_EOL; |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
実行結果