ps_scale

(PECL ps >= 1.1.0) Sets scaling factor bool ps_scale ( resource $psdoc, float $x, float $y ) Sets horizontal and vertical scaling of the coordinate system. Parameters: psdoc Resource identifier of the postscript file as returned by ps_new(). x Scaling factor in horizontal direction. y Scaling facto

ldap_get_values_len

(PHP 4, PHP 5, PHP 7) Get all binary values from a result entry array ldap_get_values_len ( resource $link_identifier, resource $result_entry_identifier, string $attribute ) Reads all the values of the attribute in the entry in the result. This function is used exactly like ldap_get_values() except that it handles binary data and not string data. Parameters: link_identifier

MongoCommandCursor::batchSize

(PECL mongo >=1.5.0) Limits the number of elements returned in one batch. public MongoCommandCursor MongoCommandCursor::batchSize ( int $batchSize ) A cursor typically fetches a batch of result objects and store them locally. This method sets the batchSize value to configure the amount of documents retrieved from the server in one round trip. Parameters: batchSize The

event_base_new

(PECL libevent >= 0.0.1) Create and initialize new event base resource event_base_new ( void ) Returns new event base, which can be used later in event_base_set(), event_base_loop() and other functions. Returns: event_base_new() returns valid event base resource on success or FALSE on error.

SolrObject::getPropertyNames

(PECL solr >= 0.9.2) Returns an array of all the names of the properties public array SolrObject::getPropertyNames ( void ) Returns an array of all the names of the properties Returns: Returns an array.

Memcached::incrementByKey

(PECL memcached >= 2.0.0) Increment numeric item's value, stored on a specific server public int Memcached::incrementByKey ( string $server_key, string $key [, int $offset = 1 [, int $initial_value = 0 [, int $expiry = 0 ]]] ) Memcached::incrementByKey() increments a numeric item's value by the specified offset. If the item's value is not numeric, an error will result. Memcached::incrementByKey() will set the item to t

SplFileObject::fgetc

(PHP 5 >= 5.1.0, PHP 7) Gets character from file public string SplFileObject::fgetc ( void ) Gets a character from the file. Returns: Returns a string containing a single character read from the file or FALSE on EOF. WarningThis function may return Boolean FALSE, but may also return a non-Boolean value which evaluates to FALSE. Please read the section on Booleans for more information. Use the

output_add_rewrite_var

(PHP 4 >= 4.3.0, PHP 5, PHP 7) Add URL rewriter values bool output_add_rewrite_var ( string $name, string $value ) This function adds another name/value pair to the URL rewrite mechanism. The name and value will be added to URLs (as GET parameter) and forms (as hidden input fields) the same way as the session ID when transparent URL rewriting is enabled with session.use_trans_sid. Please note that absolute URLs (http://ex

ftp_pasv

(PHP 4, PHP 5, PHP 7) Turns passive mode on or off bool ftp_pasv ( resource $ftp_stream, bool $pasv ) ftp_pasv() turns on or off passive mode. In passive mode, data connections are initiated by the client, rather than by the server. It may be needed if the client is behind firewall. Please note that ftp_pasv() can only be called after a successfull login or otherwise it will fail. Parameters:

atanh

(PHP 4 >= 4.1.0, PHP 5, PHP 7) Inverse hyperbolic tangent float atanh ( float $arg ) Returns the inverse hyperbolic tangent of arg, i.e. the value whose hyperbolic tangent is arg. Parameters: arg The argument to process Returns: Inverse hyperbolic tangent of arg Changelog: 5.3.0 This fun