DirectoryIterator::getFilename

(PHP 5, PHP 7) Return file name of current DirectoryIterator item. public string DirectoryIterator::getFilename ( void ) Get the file name of the current DirectoryIterator item. Returns: Returns the file name of the current DirectoryIterator item. Examples: A DirectoryIterator::getFilename() example This example will list

OAuth::setNonce

(PECL OAuth >= 0.99.1) Set the nonce for subsequent requests public mixed OAuth::setNonce ( string $nonce ) Sets the nonce for all subsequent requests. Parameters: nonce The value for oauth_nonce. Returns: Returns TRUE on success, or FALSE if the nonce is considered invalid. Changelog: 1.0.0

imagefilledrectangle

(PHP 4, PHP 5, PHP 7) Draw a filled rectangle bool imagefilledrectangle ( resource $image, int $x1, int $y1, int $x2, int $y2, int $color ) Creates a rectangle filled with color in the given image starting at point 1 and ending at point 2. 0, 0 is the top left corner of the image. Parameters: image An image resource, returned by one of the image creation functions, such as

ReflectionMethod::getModifiers

(PHP 5, PHP 7) Gets the method modifiers public int ReflectionMethod::getModifiers ( void ) Returns a bitfield of the access modifiers for this method. Returns: A numeric representation of the modifiers. The modifiers are listed below. The actual meanings of these modifiers are described in the predefined constants. Examples: Reflectio

XMLReader::moveToFirstAttribute

(PHP 5 >= 5.1.0, PHP 7) Position cursor on the first Attribute public bool XMLReader::moveToFirstAttribute ( void ) Moves cursor to the first Attribute. Returns: Returns TRUE on success or FALSE on failure. See also: XMLReader::moveToElement() - XMLReader::moveToAttribute() -

session_cache_expire

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Return current cache expire int session_cache_expire ([ string $new_cache_expire ] ) session_cache_expire() returns the current setting of session.cache_expire. The cache expire is reset to the default value of 180 stored in session.cache_expire at request startup time. Thus, you need to call session_cache_expire() for every request (and before session_start() is called).

Memcache::getStats

(PECL memcache >= 0.2.0) Get statistics of the server array Memcache::getStats ([ string $type [, int $slabid [, int $limit = 100 ]]] ) Memcache::getStats() returns an associative array with server's statistics. Array keys correspond to stats parameters and values to parameter's values. Also you can use memcache_get_stats() function. Parameters: type The type of stati

RecursiveIteratorIterator::nextElement

(PHP 5 >= 5.1.0, PHP 7) Next element public void RecursiveIteratorIterator::nextElement ( void ) Called when the next element is available. Returns: No value is returned. This function is currently not documented; only its argument list is available.

maxdb_fetch_field

(PECL maxdb >= 1.0) Returns the next field in the result set mixed maxdb_fetch_field ( resource $result ) Procedural style Object oriented style mixed maxdb_result::fetch_field ( void ) The maxdb_fetch_field() returns the definition of one column of a result set as an resource. Call this function repeatedly to retrieve information about all columns in the result set. maxdb_fetch_field() returns FALSE when no more fields

zlib://

Compression Streams zlib: PHP 4.0.4 - PHP 4.2.3 (systems with fopencookie only) compress.zlib:// and compress.bzip2:// PHP 4.3.0 and up zlib: works like gzopen(), except that the stream can be used with fread() and the other filesystem functions. This is deprecated as of PHP 4.3.0 due to ambiguities with filenames containing ':' characters; use compress.zlib:// instead. compress.zlib:// and compress.bzip2:// are equivalent to gzopen() and bzopen() respectively,