win32_delete_service

(PECL win32service SVN) Deletes a service entry from the SCM database mixed win32_delete_service ( string $servicename [, string $machine ] ) Attempts to delete a service from the SCM database. Administrative privileges are required for this to succeed. This function really just marks the service for deletion. If other processes (such as the Services Applet) are open, then the deletion will be deferred until those applicat

win32_create_service

(PECL win32service SVN) Creates a new service entry in the SCM database mixed win32_create_service ( array $details [, string $machine ] ) Parameters: details An array of service details: machine The optional machine name on which you want to create a service. If omitted, it will use the local machine. Returns: R

win32_continue_service

(PECL win32service SVN) Resumes a paused service int win32_continue_service ( string $servicename [, string $machine ] ) Resumes a paused, named service. Requires administrative privileges. Parameters: servicename The short name of the service. machine Optional machine name. If omitted, the local machine is used. Ret

win32_ps_stat_proc

(PECL win32ps >= 1.0.1) Stat process array win32_ps_stat_proc ([ int $pid = 0 ] ) Retrieves statistics about the process with the process id pid. Parameters: pid The process id of the process to stat. If omitted, the id of the current process. Returns: Returns FALSE on failure, or an array consisting of the following information on success:

win32_ps_stat_mem

(PECL win32ps >= 1.0.1) Stat memory utilization array win32_ps_stat_mem ( void ) Retrieves statistics about the global memory utilization. Returns: Returns FALSE on failure, or an array consisting of the following information on success: load The current memory load in percent of physical memory. unit This is always 1024, and indicates that the following values are the count of 1024

win32_ps_list_procs

(PECL win32ps >= 1.0.1) List running processes array win32_ps_list_procs ( void ) Retrieves statistics about all running processes. Returns: Returns FALSE on failure, or an array consisting of process statistics like win32_ps_stat_proc() returns for all running processes on success. See also: win32_ps_stat_pr

variant_xor

(PHP 5, PHP 7) Performs a logical exclusion on two variants mixed variant_xor ( mixed $left, mixed $right ) Performs a logical exclusion. Parameters: left The left operand. right The right operand. Returns: Variant XOR Rules If left is If right is then the result is TRUE TRUE FALSE TRUE FALSE TRUE FALSE TRUE TRU

variant_sub

(PHP 5, PHP 7) Subtracts the value of the right variant from the left variant value mixed variant_sub ( mixed $left, mixed $right ) Subtracts right from left. Parameters: left The left operand. right The right operand. Returns: Variant Subtraction Rules If Then Both expressions are of the string type Subtraction

variant_set

(PHP 5, PHP 7) Assigns a new value for a variant object void variant_set ( variant $variant, mixed $value ) Converts value to a variant and assigns it to the variant object; no new variant object is created, and the old value of variant is freed/released. Parameters: variant The variant. value The variant. Returns:

variant_set_type

(PHP 5, PHP 7) Convert a variant into another type "in-place" void variant_set_type ( variant $variant, int $type ) This function is similar to variant_cast() except that the variant is modified "in-place"; no new variant is created. The parameters for this function have identical meaning to those of variant_cast(). Parameters: variant The variant.