Skip to content

Instantly share code, notes, and snippets.

@flagoworld
Created April 18, 2012 23:18
Show Gist options
  • Save flagoworld/2417304 to your computer and use it in GitHub Desktop.
Save flagoworld/2417304 to your computer and use it in GitHub Desktop.
<?php
function foo($ob)
{
++$ob;
}
$bar=0;
foo($bar);
echo $bar; //echoes 0
foo(&$bar);
echo $bar; //echoes 1
//strings
$string='hello world';
echo "$string"; //echoes 'hello world'
echo '$string'; //echoes '$string'
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment