Advertisement
shmaltorhbooks

Untitled

Jun 18th, 2012
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.45 KB | None | 0 0
  1. <?php
  2.  
  3. $isAjax = isset($_SERVER["HTTP_X_REQUESTED_WITH"]) && $_SERVER["HTTP_X_REQUESTED_WITH"] == 'XMLHttpRequest';
  4.  
  5. $isForms = false !== strpos($_SERVER['HTTP_HOST'], 'net-forms.imena.ua');
  6.  
  7. if (extension_loaded('xhprof') && !$isAjax && !$isForms) {
  8.     include_once '/usr/share/pear/xhprof_lib/utils/xhprof_lib.php';
  9.     include_once '/usr/share/pear/xhprof_lib/utils/xhprof_runs.php';
  10.     xhprof_enable(XHPROF_FLAGS_CPU + XHPROF_FLAGS_MEMORY);
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement