php系统服务,PHP win32service Windows 系统后台服务,以系统服务运行PHP脚本

PHP win32service 发布7.+稳定版了,win32service扩展是Windows特定的扩展,允许PHP与服务控制管理器进行通信,以启动,停止,注册和注销服务,甚至允许您的PHP脚本作为服务运行。

Windows 服务(即,以前的 NT 服务)使您能够创建在它们自己的 Windows 会话中可长时间运行的可执行应用程序 。 这些服务可以在计算机启动时自动启动,可以暂停和重新启动而且不显示任何用户界面。这使服务非常适合在服务器上使用,或任何时候,为了不影响在同一台计算 机上工作的其他用户,需要长时间运行功能时使用。还可以在不同于登录用户的特定用户帐户或默认计算机帐户的安全上下文中运行服务

简单的说就是可以长时间、自动运行在Windows上的PHP程序。有了它可以定期执行一个PHP任务、自动更新数据 ....

注意:需要以命令行方式运行,且个别命令需要以系统管理员方式运行。php service.php createphp service.php startphp service.php stopphp service.php pausephp service.php continuephp service.php debugphp service.php delete

/**

* This file is part of win32service extension package.

* This file is an manager for Windows Service.

*

* Credit : alphp 

*

* Requirements : PHP 7+

*

* Usage :

*

* php service.php create

* php service.php start

* php service.php stop

* php service.php pause

* php service.php continue

* php service.php debug

* php service.php delete

*/

if (!extension_loaded('win32service')) {

throw new \Exception('The php_win32service.dll extension is not loaded ! Please configure it into your php configuration file.');

}

class WinServiceManager {

private $paused = false;

private $service = null;

private $status = null;

private $config = null;

private $cmd = null;

private $commands = ['run', 'create', 'delete', 'stop', 'start', 'pause', 'continue', 'debug'];

public function __construct($service, $cmd = null)

{

$this->service = $service;

$this->cmd = $cmd = strtolower($cmd);

$this->write_log('INFO: Analyzing command', empty($cmd) or $cmd != 'run');

if (empty($cmd) or !in_array($cmd, $this->commands)) {

$this->write_log('ERROR: Invalid or missing command: ' . var_export($cmd, true), true);

die (__FILE__ . ' ' . implode('|', $this->commands));

} elseif (!method_exists($this, $cmd)) {

$this->write_log('ERROR: Command not implemented: ' . $cmd, true);

} else {

$this->write_log('INFO: Querying service status', $cmd != 'run');

$this->update_service_status();

$this->write_log('INFO: Executing command: ' . $cmd, $cmd != 'run');

$this->$cmd();

}

}

public function __destruct()

{

}

private function write_log($msg = null, $cmd = false)

{

if (!$cmd and $this->cmd != 'debug') {

file_put_contents(strftime($this->service['log_file']), date('Y-m-d H:i:s') . "\t" . $msg . "\n", FILE_APPEND);

} else {

echo $msg, "\n";

}

}

private function update_service_status()

{

$this->status = win32_query_service_status($this->service['service']['service']);

}

private function write_run($msg = null)

{

file_put_contents($this->service['run_file'], date('Y-m-d H:i:s') . "\t" . $msg);

}

private function create()

{

if (!isset($this->status['CurrentState']) and $this->status == WIN32_ERROR_SERVICE_DOES_NOT_EXIST) {

$this->write_log('WARNING: Creating service');

$this->win32_op_service('win32_create_service', $this->service['service'], WIN32_NO_ERROR, 'OK: Service created', true);

}

}

private function delete()

{

if (isset($this->status['CurrentState']) and $this->status['CurrentState'] == WIN32_SERVICE_STOPPED) {

$this->write_log('WARNING: Deleting service');

$this->win32_op_service('win32_delete_service', $this->service['service']['service'], WIN32_NO_ERROR, 'OK: Service deleted', true);

}

}

private function stop()

{

if (isset($this->status['CurrentState']) and $this->status['CurrentState'] == WIN32_SERVICE_RUNNING) {

$this->write_log('WARNING: Sending stop signal');

$this->win32_op_service('win32_stop_service', $this->service['service']['service'], WIN32_NO_ERROR, 'OK: Stop signal sent', true);

}

}

private function start()

{

if (isset($this->status['CurrentState']) and $this->status['CurrentState'] == WIN32_SERVICE_STOPPED) {

$this->write_log('WARNING: Sending start signal');

$this->win32_op_service('win32_start_service', $this->service['service']['service'], WIN32_NO_ERROR, 'OK: Start signal sent', true);

}

}

private function pause()

{

if (isset($this->status['CurrentState']) and $this->status['CurrentState'] == WIN32_SERVICE_RUNNING) {

$this->write_log('WARNING: Sending pause signal');

$this->win32_op_service('win32_pause_service', $this->service['service']['service'], WIN32_NO_ERROR, 'OK: Pause signal sent', true);

}

}

private function continue()

{

if (isset($this->status['CurrentState']) and $this->status['CurrentState'] == WIN32_SERVICE_PAUSED) {

$this->write_log('WARNING: Sending continue signal');

$this->win32_op_service('win32_continue_service', $this->service['service']['service'], WIN32_NO_ERROR, 'OK: Continue signal sent', true);

}

}

private function start_service()

{

$this->write_log('INFO: Connecting with the service');

if (!$this->win32_op_service('win32_start_service_ctrl_dispatcher', $this->service['service']['service'])) return(false);

return $this->set_service_running();

}

private function set_service_running()

{

$this->write_log('WARNING: Sending running signal');

return $this->win32_op_service('win32_set_service_status', WIN32_SERVICE_RUNNING, true, 'OK: Service started');

}

private function set_service_stopped()

{

$this->write_log('WARNING: Sending stopped signal');

return $this->win32_op_service('win32_set_service_status', WIN32_SERVICE_STOPPED, true, 'OK: Service stopped');

}

private function set_service_paused()

{

$this->write_log('WARNING: Sending stopped signal');

return $this->win32_op_service('win32_set_service_status', WIN32_SERVICE_PAUSED, true, 'OK: Service paused');

}

private function main_loop($debug = false)

{

$this->write_run();

$this->write_log('Do something', $debug);

}

private function win32_op_service($win32_op_service, $param, $cond = true, $msg = null, $debug = false)

{

$err_code = $win32_op_service($param);

if ($cond === $err_code) {

if (isset($msg)) {

$this->write_log($msg, $debug);

}

return true;

} elseif (false === $err_code) {

$this->write_log('ERROR: Problem with the parameters', $debug);

} elseif (WIN32_ERROR_ACCESS_DENIED === $err_code) {

$this->write_log('ERROR: Access denied', $debug);

} else {

$this->write_log('ERROR: Win32 Error Code ' . $err_code, $debug);

}

return false;

}

private function debug()

{

if ((!isset($this->status['CurrentState']) and $this->status == WIN32_ERROR_SERVICE_DOES_NOT_EXIST) or (isset($this->status['CurrentState']) and $this->status['CurrentState'] == WIN32_SERVICE_STOPPED)) {

$this->write_log('DEBUG Start', true);

$this->main_loop(true);

$this->write_log('DEBUG End', true);

}

}

private function run()

{

if (isset($this->status['CurrentState']) and $this->status['CurrentState'] == WIN32_SERVICE_START_PENDING) {

if ($this->start_service()) {

while (WIN32_SERVICE_CONTROL_STOP != $ctr_msg = win32_get_last_control_message()) {

if ($ctr_msg === WIN32_SERVICE_CONTROL_INTERROGATE) {

win32_set_service_status($this->paused ? WIN32_SERVICE_PAUSED : WIN32_SERVICE_RUNNING);

} elseif ($ctr_msg === WIN32_SERVICE_CONTROL_CONTINUE && $this->status['CurrentState'] == WIN32_SERVICE_PAUSED) {

$this->write_log('Service Control : Continue');

$this->paused = false;

win32_set_service_status(WIN32_SERVICE_CONTINUE_PENDING);

$this->set_service_running();

} elseif ($ctr_msg === WIN32_SERVICE_CONTROL_PAUSE && $this->status['CurrentState'] == WIN32_SERVICE_RUNNING) {

$this->write_log('Service Control : Pause');

$this->paused = true;

win32_set_service_status(WIN32_SERVICE_PAUSE_PENDING);

$this->set_service_paused();

//} elseif ($ctr_msg === WIN32_SERVICE_CONTROL_PRESHUTDOWN) {

//} elseif ($ctr_msg === WIN32_SERVICE_CONTROL_SHUTDOWN) {

//} elseif ($ctr_msg === WIN32_SERVICE_CONTROL_STOP) {

}

if (!$this->paused) {

if ($this->status['CurrentState'] == WIN32_SERVICE_CONTINUE_PENDING){

$this->set_service_running();

}

$this->main_loop();

}

if ($this->paused && $this->status['CurrentState'] == WIN32_SERVICE_PAUSE_PENDING){

$this->set_service_paused();

}

$this->write_run('LOOP WAIT');

sleep($this->service['loop_wait']);

$this->update_service_status();

}

$this->set_service_stopped();

}

}

}

}

$service = [

'run_file' => __DIR__ . '/service_run.log',

'log_file' => __DIR__ . '/service_%Y%m%d.log',

'loop_wait' => 10,

'service' => [

'service' => 'WindowsServicePhpTest',

'display' => 'Windows service PHP test',

'description' => 'This service is an PHP example for test',

'path' => '"' . dirname(PHP_BINARY) . '\\php-win.exe"',

'params' => '"' . __FILE__ . '" run',

'start_type' => WIN32_SERVICE_AUTO_START,

],

];

if (!isset($argv[1])) $argv[1] = null;

new WinServiceManager($service, $argv[1]);

?>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值