KTaglib_Tag::getTrack

(0.0.1) Returns the track number from a ID3 tag public int KTaglib_Tag::getTrack ( void ) Returns the track number of an ID3 tag. This method is implemented in ID3v1 and ID3v2 tags. Returns: Returns the track number as an integer

rename_function

(PECL apd >= 0.2) Renames orig_name to new_name in the global function table bool rename_function ( string $original_name, string $new_name ) Renames a orig_name to new_name in the global function table. Useful for temporarily overriding built-in functions. Parameters: original_name The original function name. new_name The new name f

__autoload

(PHP 5, PHP 7) Attempt to load undefined class void __autoload ( string $class ) You can define this function to enable classes autoloading. Parameters: class Name of the class to load Returns: No value is returned. See also: spl_autoload_register() -

HaruDoc::loadJPEG

(PECL haru >= 0.0.1) Load a JPEG image object HaruDoc::loadJPEG ( string $filename ) Loads the specified JPEG image. Parameters: filename A valid JPEG image file. Returns: Returns a new HaruImage instance. Exception: Throws a HaruException on error. See also:

MongoDB::setReadPreference

(PECL mongo >=1.3.0) Set the read preference for this database public bool MongoDB::setReadPreference ( string $read_preference [, array $tags ] ) Parameters: read_preference The read preference mode: MongoClient::RP_PRIMARY, MongoClient::RP_PRIMARY_PREFERRED, MongoClient::RP_SECONDARY, MongoClient::RP_SECONDARY_PREFERRED, or MongoClient::RP_NEAREST.

ifx_close

(PHP 4, PHP <=5.2.0) Close Informix connection bool ifx_close ([ resource $link_identifier ] ) ifx_close() closes the link to an Informix database that's associated with the specified link identifier. Note that this isn't usually necessary, as non-persistent open links are automatically closed at the end of the script's execution. ifx_close() will not close persistent links generated by ifx_pconnect().

openal_device_open

(PECL openal >= 0.1.0) Initialize the OpenAL audio layer resource openal_device_open ([ string $device_desc ] ) Parameters: device_desc Open an audio device optionally specified by device_desc. If device_desc is not specified the first available audio device will be used. Returns: Returns an Open AL(Device) resource on success or FALSE on fail

IntlChar::isJavaIDStart

(PHP 7) Check if code point is permissible as the first character in a Java identifier public static bool IntlChar::isJavaIDStart ( mixed $codepoint ) Determines if the specified character is permissible as the start of a Java identifier. In addition to IntlChar::isIDStart(), TRUE for characters with general categories "Sc" (currency symbols) and "Pc" (connecting punctuation). Parameters:

mqseries_connx

(PECL mqseries >= 0.10.0) MQSeries MQCONNX void mqseries_connx ( string $qManagerName, array &$connOptions, resource &$hconn, resource &$compCode, resource &$reason ) The mqseries_connx() (MQCONNX) call connects an application program to a queue manager. It provides a queue manager connection handle, which is used by the application on subsequent MQ calls. Parameters:

Memcache::replace

(PECL memcache >= 0.2.0) Replace value of the existing item bool Memcache::replace ( string $key, mixed $var [, int $flag [, int $expire ]] ) Memcache::replace() should be used to replace value of existing item with key. In case if item with such key doesn't exists, Memcache::replace() returns FALSE. For the rest Memcache::replace() behaves similarly to Memcache::set(). Also you can use memcache_replace() function.