RegexIterator::getPregFlags

(PHP 5 >= 5.2.0, PHP 7) Returns the regular expression flags. public int RegexIterator::getPregFlags ( void ) Returns the regular expression flags, see RegexIterator::__construct() for the list of flags. Returns: Returns a bitmask of the regular expression flags. Examples: RegexIterator::getPregFlags() example <?php

GearmanWorker::timeout

(PECL gearman >= 0.6.0) Get socket I/O activity timeout public int GearmanWorker::timeout ( void ) Returns the current time to wait, in milliseconds, for socket I/O activity. Returns: A time period is milliseconds. A negative value indicates an infinite timeout. See also: GearmanWorker::setTimeout() -

EventHttpConnection::setMaxHeadersSize

(PECL event >= 1.2.6-beta) Sets maximum header size public void EventHttpConnection::setMaxHeadersSize ( string $max_size ) Sets maximum header size for the connection. Parameters: max_size The maximum header size in bytes. Returns: No value is returned. See also:

variant_cast

(PHP 5, PHP 7) Convert a variant into a new variant object of another type variant variant_cast ( variant $variant, int $type ) This function makes a copy of variant and then performs a variant cast operation to force the copy to have the type given by type. This function wraps VariantChangeType() in the COM library; consult MSDN for more information. Parameters: variant

PharData::delete

(PHP >= 5.3.0, PECL phar >= 2.0.0) Delete a file within a tar/zip archive bool PharData::delete ( string $entry ) Delete a file within an archive. This is the functional equivalent of calling unlink() on the stream wrapper equivalent, as shown in the example below. Parameters: entry Path within an archive to the file to delete. Returns: ret

Ev::feedSignalEvent

(No version information available, might only be in Git) Feed signal event into the default loop final public static void Ev::feedSignalEvent ( int $signum ) Feed signal event into the default loop. Ev will react to this call as if the signal specified by signal had occurred. Parameters: signum Signal number. See signal(7) man page for detals. See also constants exporte

gnupg_verify

(PECL gnupg >= 0.1) Verifies a signed text array gnupg_verify ( resource $identifier, string $signed_text, string $signature [, string &$plaintext ] ) Verifies the given signed_text and returns information about the signature. Parameters: identifier The gnupg identifier, from a call to gnupg_init() or gnupg. signed_text The signed

bbcode_add_smiley

(PECL bbcode >= 0.10.2) Adds a smiley to the parser bool bbcode_add_smiley ( resource $bbcode_container, string $smiley, string $replace_by ) Adds a smiley to the parser Parameters: bbcode_container BBCode_Container resource, returned by bbcode_create(). smiley The string that will be replaced when found. repla

fann_get_learning_rate

(PECL fann >= 1.0.0) Returns the learning rate float fann_get_learning_rate ( resource $ann ) The learning rate is used to determine how aggressive training should be for some of the training algorithms (FANN_TRAIN_INCREMENTAL, FANN_TRAIN_BATCH, FANN_TRAIN_QUICKPROP). Do however note that it is not used in FANN_TRAIN_RPROP. The default learning rate is 0.7. Parameters: ann

imagesy

(PHP 4, PHP 5, PHP 7) Get image height int imagesy ( resource $image ) Returns the height of the given image resource. Parameters: image An image resource, returned by one of the image creation functions, such as imagecreatetruecolor(). Returns: Return the height of the image or FALSE on errors. Exa