Created
February 20, 2013 16:39
-
-
Save makasim/4996924 to your computer and use it in GitHub Desktop.
This file contains 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 | |
$internal = new \ArrayObject(); | |
$internal['foo'] = 'foo'; | |
$external = new ArrayObject($internal); | |
$external['foo'] = 'bar'; | |
var_dump($internal['foo'], $external['foo']); | |
//какой значение будет в $internal['foo']? foo or bar? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment