Skip to content

Instantly share code, notes, and snippets.

@seyyah
Created July 23, 2010 07:15
Show Gist options
  • Select an option

  • Save seyyah/487119 to your computer and use it in GitHub Desktop.

Select an option

Save seyyah/487119 to your computer and use it in GitHub Desktop.
<?php
$var = 1;
$pointer = &$var;
$pointer = 99;
echo "var = $var"; // var = 1 DEGIL var = 99 olur!
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment