Created
October 10, 2014 13:21
-
-
Save florinutz/5a69a7ad19a489466e8c to your computer and use it in GitHub Desktop.
da
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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