win32service 函数
在线手册:中文 英文
PHP手册

win32_start_service

(PECL win32service SVN)

win32_start_serviceStarts a service

说明

int win32_start_service ( string $servicename [, string $machine ] )

Attempts to start the named service. Usually requires administrative privileges.

参数

servicename

The short name of the service.

machine

Optional machine name. If omitted, the local machine is used.

返回值

成功, 参数错误时返回 FALSE , 或失败时返回一个 Win32 错误码 . 时返回 WIN32_NO_ERROR

参见


win32service 函数
在线手册:中文 英文
PHP手册
PHP手册 - N: Starts a service

用户评论:

edo888 at gmail dot com (18-Mar-2010 01:23)

[This] can solve 1053 issue.
You just need to add " if you have spaces in your path...

<?php
win32_create_service
(array(
       
'service' => 'COMPLAINTS',                 # the name of your service
       
'display' => 'Receive email complaints and direct them to the website', # description
       
'params' => '"' . __FILE__ . '"' . ' run', # path to the script and parameters
   
));
?>

gunday at poczta dot onet dot pl (16-Oct-2007 02:40)

If you get a 1053 error when trying to launch your service, check your service script for errors!

E.g. if you have some syntax errors, the service will attempt to run the php interpreter, but the script won't answer to the service manager with
win32_start_service_ctrl_dispatcher('servicename').

Don't think it is because the call comes to late. It just never came, because there were errors. Test your services with CLI php and then try to run the service.