Innovation Award
 September 2009
Number 2 |
A Windows service is a program that keeps running in the background ready to perform certain tasks. It is the equivalent to daemon processes on Linux and other Unix like systems.
This class gives an example of how to create and register a service that can be started and stopped like other Windows services.
Manuel Lemos |
This class can be used to used to create Windows service to run daemons.
This is mostly an example of how to start a Windows service using the Win32 PHP extension.
It register the service and starts a loop that goes on forever until the service is instructed to terminate.
In side the service loop the class calls a separate PHP script that can perform an arbitrary task as a thread running in parallel to the service daemon.
| There are not enough user ratings to display for this class. |
No application links were specified for this class.

If you know an application of this package, send a message to the
author to add a link here.
| File |
Role |
Description |
jobScript.php |
Example |
this file will receive all the paramets sent by the windows service using the multithreading process and process the further execution |
phpdaemon.php |
Class |
this class will help you to launch a windows service using php with mulit threading property |