Created
June 26, 2024 03:31
-
-
Save eric0324/61754c0fc6d7128efc9d1d3ac89b8a9f to your computer and use it in GitHub Desktop.
Revisions
-
eric0324 renamed this gist
Jun 26, 2024 . 1 changed file with 2 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,5 @@ <?php $x = 5; $y = &$x; $y = 3; -
eric0324 created this gist
Jun 26, 2024 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ $x = 5; $y = &$x; $y = 3; echo $x; unset($y); $y = 7; echo $x;