Skip to content

Instantly share code, notes, and snippets.

@Berdir
Created January 3, 2014 21:34
Show Gist options
  • Save Berdir/8247046 to your computer and use it in GitHub Desktop.
Save Berdir/8247046 to your computer and use it in GitHub Desktop.
<?php
$node = node_load(1);
foreach ($node as $field) {
}
$start = microtime(TRUE);
for ($i = 0; $i < 1000; $i++) {
$serialized = serialize(clone $node);
unserialize($serialized);
}
print round(microtime(TRUE) - $start, 3) . "\n";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment