Skip to content

Instantly share code, notes, and snippets.

@mrded
Last active December 24, 2015 13:49
Show Gist options
  • Save mrded/6808165 to your computer and use it in GitHub Desktop.
Save mrded/6808165 to your computer and use it in GitHub Desktop.
Drupal: Static cache example.
<?php
function static_cache($value = NULL) {
$_value = &drupal_static(__FUNCTION__, array());
if (isset($value)) {
$_value = clone $value;
}
return $_value;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment