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

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.

返回值

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

参见


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

用户评论:

edo888 at gmail dot com (2010-03-18 05:23:12)

[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 (2007-10-16 06:40:12)

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.

易百教程