QuickHashIntStringHash::saveToString

(PECL quickhash >= Unknown) This method returns a serialized version of the hash public string QuickHashIntStringHash::saveToString ( void ) This method returns a serialized version of the hash in the same format that loadFromString() can read. Returns: This method returns a string containing a serialized format of the hash. Each element is stored as a four byte value in the Endianness that the

Imagick::encipherImage

(No version information available, might only be in Git) Enciphers an image bool Imagick::encipherImage ( string $passphrase ) Converts plain pixels to enciphered pixels. The image is not readable until it has been deciphered using Imagick::decipherImage() This method is available if Imagick has been compiled against ImageMagick version 6.3.9 or newer. Parameters: passphrase

Collator::getAttribute

(PHP 5 >= 5.3.0, PHP 7, PECL intl >= 1.0.0) Get collation attribute value public int Collator::getAttribute ( int $attr ) Object oriented style Procedural style int collator_get_attribute ( Collator $coll , int $attr ) Get a value of an integer collator attribute. Parameters: coll Collator object. attr Attribute to get value

GearmanWorker::register

(PECL gearman >= 0.6.0) Register a function with the job server public bool GearmanWorker::register ( string $function_name [, int $timeout ] ) Registers a function name with the job server with an optional timeout. The timeout specifies how many seconds the server will wait before marking a job as failed. If the timeout is set to zero, there is no timeout. Parameters: function_nam

Phar::extractTo

(Unknown) Extract the contents of a phar archive to a directory public bool Phar::extractTo ( string $pathto [, string|array $files [, bool $overwrite = false ]] ) Note: This method requires the php.ini setting phar.readonly to be set to 0 in order to work for Phar objects. Otherwise, a PharException will be thrown. Extract all files within a phar archive to disk. Extracted files and directories preserve permissions as

mb_substitute_character

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Set/Get substitution character mixed mb_substitute_character ([ mixed $substrchar = mb_substitute_character() ] ) Specifies a substitution character when input character encoding is invalid or character code does not exist in output character encoding. Invalid characters may be substituted NULL (no output), string or integer value (Unicode character code value). This setting affects mb_co

SplTempFileObject::__construct

(PHP 5 >= 5.1.2, PHP 7) Construct a new temporary file object public SplTempFileObject::__construct ([ int $max_memory ] ) Construct a new temporary file object. Parameters: max_memory The maximum amount of memory (in bytes, default is 2 MB) for the temporary file to use. If the temporary file exceeds this size, it will be moved to a file in the system's temp directory

stream_set_blocking

(PHP 4 >= 4.3.0, PHP 5, PHP 7) Set blocking/non-blocking mode on a stream bool stream_set_blocking ( resource $stream, bool $mode ) Sets blocking or non-blocking mode on a stream. This function works for any stream that supports non-blocking mode (currently, regular files and socket streams). Parameters: stream The stream. mode If

SolrQuery::setTermsPrefix

(PECL solr >= 0.9.2) Restrict matches to terms that start with the prefix public SolrQuery SolrQuery::setTermsPrefix ( string $prefix ) Restrict matches to terms that start with the prefix Parameters: prefix Restrict matches to terms that start with the prefix Returns: Returns the current SolrQuery object, if the return value is used.

ldap_err2str

(PHP 4, PHP 5, PHP 7) Convert LDAP error number into string error message string ldap_err2str ( int $errno ) Returns the string error message explaining the error number errno. While LDAP errno numbers are standardized, different libraries return different or even localized textual error messages. Never check for a specific error message text, but always use an error number to check. Parameters: