Guest User

Untitled

a guest
Jan 23rd, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. <?php
  2.  
  3. $gmw = new GearmanWorker();
  4. $gmw->addServer();
  5.  
  6. $gmw->addFunction('test', function(GearmanJob $job) {
  7. throw new Exception('Boom');
  8. });
  9.  
  10. while(1) $gmw->work();
Add Comment
Please, Sign In to add comment