VarnishAdmin::setParam

(PECL varnish >= 0.4) Set configuration param on the current varnish instance public int VarnishAdmin::setParam ( string $name, string|integer $value ) Parameters: name Varnish configuration param name. value Varnish configuration param value. Returns: Returns the varnish command status.

MongoClient::__construct

(PECL mongo >=1.3.0) Creates a new database connection object public MongoClient::__construct ([ string $server = "mongodb://localhost:27017" [, array $options = array("connect" => TRUE) [, array $driver_options ]]] ) If no parameters are passed, this connects to "localhost:27017" (or whatever was specified in php.ini for mongo.default_host and mongo.default_port). server should have the form: mongodb://[username:password@]host1[:

stream_register_wrapper

(PHP 4 >= 4.3.0, PHP 5, PHP 7) Alias of stream_wrapper_register() This function is an alias of: stream_wrapper_register().

xml_parse_into_struct

(PHP 4, PHP 5, PHP 7) Parse XML data into an array structure int xml_parse_into_struct ( resource $parser, string $data, array &$values [, array &$index ] ) This function parses an XML string into 2 parallel array structures, one (index) containing pointers to the location of the appropriate values in the values array. These last two parameters must be passed by reference. Parameters:

EventBufferEvent::setWatermark

(PECL event >= 1.2.6-beta) Adjusts read and/or write watermarks public void EventBufferEvent::setWatermark ( int $events , int $lowmark , int $highmark ) Adjusts the read watermarks, the write watermarks , or both, of a single buffer event. A buffer event watermark is an edge, a value specifying number of bytes to be read or written before callback is invoked. By default every read/write event triggers a callback invo

pg_update

(PHP 4 >= 4.3.0, PHP 5, PHP 7) Update table mixed pg_update ( resource $connection, string $table_name, array $data, array $condition [, int $options = PGSQL_DML_EXEC ] ) pg_update() updates records that matches condition with data. If options is specified, pg_convert() is applied to data with specified options. Parameters: connection PostgreSQL database connection

pcntl_fork

(PHP 4 >= 4.1.0, PHP 5, PHP 7) Forks the currently running process int pcntl_fork ( void ) The pcntl_fork() function creates a child process that differs from the parent process only in its PID and PPID. Please see your system's fork(2) man page for specific details as to how fork works on your system. Returns: On success, the PID of the child process is returned in the parent's thread of execu

error_clear_last

(PHP 7) Clear the most recent error void error_clear_last ( void ) Returns: Clears the most recent errors, making it unable to be retrieved with error_get_last(). Examples: An error_clear_last() example <?php var_dump(error_get_last()); error_clear_last(); var_dump(error_get_last()); @$a = $b; var_dump(error_get_last(

GearmanClient::addServer

(PECL gearman >= 0.5.0) Add a job server to the client public bool GearmanClient::addServer ([ string $host = 127.0.0.1 [, int $port = 4730 ]] ) Adds a job server to a list of servers that can be used to run a task. No socket I/O happens here; the server is simply added to the list. Parameters: host The job server host name. port T

GearmanClient::doLowBackground

(PECL gearman >= 0.5.0) Run a low priority task in the background public string GearmanClient::doLowBackground ( string $function_name, string $workload [, string $unique ] ) Runs a low priority task in the background, returning a job handle which can be used to get the status of the running task. Normal and high priority tasks take precedence over low priority tasks in the job queue. Parameters: