Dutch PHP Conference 2025 - Call For Papers

win32_add_service_env_var

(PECL win32service >=1.1.0)

win32_add_service_env_varAdd a custom environment variables on service

Descrição

win32_add_service_env_var(string $servicename, string $varname, string $value): void

Add a custom environment variables varname on servicename service. This function work only for the local computer. Administrative privileges are required for this to succeed.

Parâmetros

servicename

The service name to add environment variable.

varname

The environment variable name.

value

The environment variable value.

Valor Retornado

Nenhum valor é retornado.

Erros/Exceções

A ValueError is thrown if the value of service parameter is empty.

A ValueError is thrown if the value of varname parameter is empty.

A Win32ServiceException is thrown on error.

Veja Também

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top