Skip to content

Instantly share code, notes, and snippets.

@tekante
Created April 9, 2015 02:04
Show Gist options
  • Save tekante/4b267ed00ea9cff9a165 to your computer and use it in GitHub Desktop.
Save tekante/4b267ed00ea9cff9a165 to your computer and use it in GitHub Desktop.
if (TRUE && function_exists('xhprof_sample_enable')) {
xhprof_sample_enable();
register_shutdown_function(function () {
$filename = '/var/www/vhosts/anninc-atrium/htdocs/sites/default/files/xhprof_samples/' . uniqid() . '.' . strtr($_GET['q'], array('/' => '--')) . '.sample_xhprof';
file_put_contents($filename, serialize(xhprof_sample_disable()));
//chmod($filename, 0777);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment