Advertisement
nokimchen

Untitled

Sep 25th, 2013
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. <?php
  2.  
  3. require_once "System/Daemon.php"; // Include the Class
  4.  
  5. System_Daemon::setOption("appName", "mydaemon"); // Minimum configuration
  6. System_Daemon::start(); // Spawn Deamon!
  7.  
  8. while (1==1){ sleep(5);}
  9.  
  10. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement