Skip to content

Instantly share code, notes, and snippets.

@trollboy
Created June 6, 2020 02:27
Show Gist options
  • Select an option

  • Save trollboy/3e2e1660c4ff8728672a70667b69527e to your computer and use it in GitHub Desktop.

Select an option

Save trollboy/3e2e1660c4ff8728672a70667b69527e to your computer and use it in GitHub Desktop.
$data = 'cat';
function foobar() {
$data = 'dog';
}
echo $data;
foobar();
echo $data;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment