RarEntry::getPackedSize

(PECL rar >= 0.1) Get packed size of the entry public int RarEntry::getPackedSize ( void ) Get packed size of the archive entry. Note: Note that on platforms with 32-bit longs (that includes Windows x64), the maximum size returned is capped at 2 GiB. Check the constant PHP_INT_MAX. Returns: Returns the packed size, or FALSE on error. Changelog:

KTaglib_MPEG_AudioProperties::getVersion

(0.0.1) Returns the version of a MPEG file public int KTaglib_MPEG_AudioProperties::getVersion ( void ) Returns the version of the MPEG file header. The possible versions are defined in Tag_MPEG_Header (Version1, Version2, Version2.5). Returns: Returns the version

microtime

(PHP 4, PHP 5, PHP 7) Return current Unix timestamp with microseconds mixed microtime ([ bool $get_as_float = false ] ) microtime() returns the current Unix timestamp with microseconds. This function is only available on operating systems that support the gettimeofday() system call. Parameters: get_as_float If used and set to TRUE, microtime() will return a float instead

Comparing generators with Iterator objects

Examples: The primary advantage of generators is their simplicity. Much less boilerplate code has to be written compared to implementing an Iterator class, and the code is generally much more readable. For example, the following function and class are equivalent: <?php function getLinesFromFile($fileName) {     if (!$fileHandle = fopen($fileName, 'r')) {         return;     }       while (false !== $line = fgets($fileHandle)) {         yield $line;     }       f

Gmagick::queryfonts

(PECL gmagick >= Unknown) Returns the configured fonts public array Gmagick::queryfonts ([ string $pattern = "*" ] ) Returns fonts supported by Gmagick. Returns: The Gmagick object on success Exception: Throws an GmagickException on error.

SWFSprite::nextFrame

(PHP 5 <= 5.3.0, PECL ming SVN) Moves to the next frame of the animation void SWFSprite::nextFrame ( void ) swfsprite::setframes() moves to the next frame of the animation. Returns: No value is returned. This function is EXPERIMENTAL. The behaviour of this function, its name, and surrounding documentation may change without notice in a future release of PHP

trader_ht_phasor

(PECL trader >= 0.2.0) Hilbert Transform - Phasor Components array trader_ht_phasor ( array $real ) Parameters: real Array of real values. Returns: Returns an array with calculated data or false on failure.

msession_set_data

(PHP 4 >= 4.2.0, PHP 5 <= 5.1.2) Set data session unstructured data bool msession_set_data ( string $session, string $value ) This function is currently not documented; only its argument list is available.

Phar::interceptFileFuncs

(PHP >= 5.3.0, PECL phar >= 2.0.0) instructs phar to intercept fopen, file_get_contents, opendir, and all of the stat-related functions final public static void Phar::interceptFileFuncs ( void ) instructs phar to intercept fopen(), readfile(), file_get_contents(), opendir(), and all of the stat-related functions. If any of these functions is called from within a phar archive with a relative path, the call is modified

Phar::getVersion

(PHP >= 5.3.0, PECL phar >= 1.0.0) Return version info of Phar archive public string Phar::getVersion ( void ) Returns the API version of an opened Phar archive. Returns: The opened archive's API version. This is not to be confused with the API version that the loaded phar extension will use to create new phars. Each Phar archive has the API version hard-coded into its manifest. See Phar fil