Skip to content

Instantly share code, notes, and snippets.

@BigWhale
Created September 27, 2017 14:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save BigWhale/dd0e4fbec15d9cd6c4df041b7683cb2d to your computer and use it in GitHub Desktop.
Save BigWhale/dd0e4fbec15d9cd6c4df041b7683cb2d to your computer and use it in GitHub Desktop.
WordPress theme memory usage
add_action( 'shutdown', 'do_shutdown', 999);
function do_shutdown() {
$f = fopen('/tmp/memory_usage.txt', 'a+');
$usage = memory_get_peak_usage( true );
fwrite( $f, $usage / 1024 / 1024 . " MB\n" );
fclose( $f );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment