Skip to content

Instantly share code, notes, and snippets.

@carstingaxion
Created January 5, 2023 23:16
Show Gist options
  • Save carstingaxion/30bae8e23356c440da11d53e430b91a3 to your computer and use it in GitHub Desktop.
Save carstingaxion/30bae8e23356c440da11d53e430b91a3 to your computer and use it in GitHub Desktop.
Check for xhprof_sample_enable()
<?php
echo '<p>Calling to <code>xhprof_sample_enable()</code>.</p>' . PHP_EOL;
if (function_exists('xhprof_sample_enable')) {
xhprof_sample_enable();
} else {
echo '<p style="color: red;">This server does not support <code>xhprof_sample_enable()</code> function.</p>' . PHP_EOL;
echo 'Exit now.<br>' . PHP_EOL;
exit();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment