try another color:
try another fontsize: 60% 70% 80% 90%
PHP Suit
Useful PHP scripts

Creating system daemon in PHP

Kevin van Zonneveld shows how to create daemons (services) in PHP.

A daemon is a Linux program that run in the background, just like a 'Service' on Windows. It can perform all sorts of tasks that do not require direct user input. Apache is a daemon, so is MySQL. All you ever hear from them is found in somewhere in /var/log, yet they silently power over 40% of the Internet.

Everyone knows PHP can be used to create websites. But it can also be used to create desktop applications and commandline tools. And now with a class called System_Daemon, you can even create daemons using nothing but PHP.

Create daemons in PHP