Created
July 9, 2015 17:52
-
-
Save neclimdul/a357a4b2551153a39385 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 | |
function method($cache) { | |
$prepared = clone $cache; | |
$prepared->data = unserialize($prepared->data); | |
return $prepared; | |
} | |
$cache = new stdClass(); | |
$cache->data = serialize(['foo' => 'bar']); | |
for ($i = 0; $i < 5; ++$i) { | |
echo "$i\n"; | |
method($cache); | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment