Advertisement
Guest User

Untitled

a guest
Dec 19th, 2014
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. <?php
  2.  
  3. xmlrpc_tick('start');
  4. declare(ticks=10000);
  5. register_tick_function('xmlrpc_tick');
  6.  
  7. function xmlrpc_tick($str = '') {
  8.     $duration = microtime(true) - EXECUTION_START_TIME;
  9.     if ($duration > MAX_EXECUTION_TIME)
  10.         throw new Exception("Execution timeout", 504);
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement