Advertisement
nokimchen

Untitled

Sep 25th, 2013
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. <?php
  2.  
  3. echo "</br>1";
  4. require_once "System/Daemon.php"; // Include the Class
  5. echo "</br>2";
  6.  
  7. System_Daemon::setOption("appName", "mydaemon"); // Minimum configuration
  8. echo "</br>3";
  9. System_Daemon::start(); // Spawn Deamon!
  10. echo "</br>4";
  11.  
  12.  
  13. for ($x=0; $x<=100000; $x++)
  14. {
  15. file_put_contents("qas.txt", $x);
  16. }
  17.  
  18.  
  19.  
  20. // Stop daemon!
  21. System_Daemon::stop();
  22.  
  23.  
  24. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement