Skip to content

Instantly share code, notes, and snippets.

@neclimdul
Created July 9, 2015 17:52
Show Gist options
  • Save neclimdul/a357a4b2551153a39385 to your computer and use it in GitHub Desktop.
Save neclimdul/a357a4b2551153a39385 to your computer and use it in GitHub Desktop.
<?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