Skip to content

Instantly share code, notes, and snippets.

@eric0324
Created June 26, 2024 03:31
Show Gist options
  • Select an option

  • Save eric0324/61754c0fc6d7128efc9d1d3ac89b8a9f to your computer and use it in GitHub Desktop.

Select an option

Save eric0324/61754c0fc6d7128efc9d1d3ac89b8a9f to your computer and use it in GitHub Desktop.
<?php
$x = 5;
$y = &$x;
$y = 3;
echo $x;
unset($y);
$y = 7;
echo $x;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment