Skip to content

Instantly share code, notes, and snippets.

@florinutz
Created October 10, 2014 13:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save florinutz/5a69a7ad19a489466e8c to your computer and use it in GitHub Desktop.
Save florinutz/5a69a7ad19a489466e8c to your computer and use it in GitHub Desktop.
da
<?php
// florin 10/10/14 4:15 PM
$a = new stdClass();
$a->panaMea = "Panama";
$b = $a;
$b->panaMea = "Uzbekistan";
var_export($a);
/**
stdClass::__set_state(array(
'panaMea' => 'Uzbekistan',
))
*/
/**
* https://www.youtube.com/watch?v=Atr8iFcc0qQ
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment