KTaglib_Tag::getAlbum

(0.0.1) Returns the title string from a ID3 tag public string KTaglib_Tag::getAlbum ( void ) Returns the album string of an ID3 tag. This method is implemented in ID3v1 and ID3v2 tags. Returns: Returns the album string

Imagick::setImageInterpolateMethod

(PECL imagick 2.0.0) Sets the image interpolate pixel method bool Imagick::setImageInterpolateMethod ( int $method ) Sets the image interpolate pixel method. Parameters: method The method is one of the Imagick::INTERPOLATE_* constants Returns: Returns TRUE on success.

mysqli::set_local_infile_handler

(PHP 5, PHP 7) Set callback function for LOAD DATA LOCAL INFILE command bool mysqli::set_local_infile_handler ( mysqli $link, callable $read_func ) Object oriented style Procedural style bool mysqli_set_local_infile_handler ( mysqli $link , callable $read_func ) Set callback function for LOAD DATA LOCAL INFILE command The callbacks task is to read input from the file specified in the LOAD DATA LOCAL INFILE and to reformat i

snmpset

(PHP 4, PHP 5, PHP 7) Set the value of an SNMP object bool snmpset ( string $host, string $community, string $object_id, string $type, mixed $value [, int $timeout = 1000000 [, int $retries = 5 ]] ) snmpset() is used to set the value of an SNMP object specified by the object_id. Parameters: host The hostname of the SNMP agent (server). community

svn_fs_file_contents

(PECL svn >= 0.1.0) Returns a stream to access the contents of a file from a given version of the fs resource svn_fs_file_contents ( resource $fsroot, string $path ) Returns a stream to access the contents of a file from a given version of the fs This function is currently not documented; only its argument list is available.

date_sunset

(PHP 5, PHP 7) Returns time of sunset for a given day and location mixed date_sunset ( int $timestamp [, int $format = SUNFUNCS_RET_STRING [, float $latitude = ini_get("date.default_latitude") [, float $longitude = ini_get("date.default_longitude") [, float $zenith = ini_get("date.sunset_zenith") [, float $gmt_offset = 0 ]]]]] ) date_sunset() returns the sunset time for a given day (specified as a timestamp) and locat

min

(PHP 4, PHP 5, PHP 7) Find lowest value mixed min ( array $values ) mixed min ( mixed $value1 , mixed $value2 [, mixed $... ] ) If the first and only parameter is an array, min() returns the lowest value in that array. If at least two parameters are provided, min() returns the smallest of these values. Note: Values of different types will be compared using the standard comparison rules. For instance, a non-numeric stri

MongoDB::command

(PECL mongo >=0.9.2) Execute a database command public array MongoDB::command ( array $command [, array $options = array() [, string &$hash ]] ) Almost everything that is not a CRUD operation can be done with a database command. Need to know the database version? There's a command for that. Need to do aggregation? There's a command for that. Need to turn up logging? You get the idea. This method is identical to:

session_set_save_handler

(PHP 4, PHP 5, PHP 7) Sets user-level session storage functions bool session_set_save_handler ( callable $open, callable $close, callable $read, callable $write, callable $destroy, callable $gc [, callable $create_sid ] ) Since PHP 5.4 it is possible to register the following prototype: bool session_set_save_handler ( SessionHandlerInterface $sessionhandler [, bool $register_shutdown = true ] ) session_set_save_handler()

var_export

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Outputs or returns a parsable string representation of a variable mixed var_export ( mixed $expression [, bool $return = false ] ) var_export() gets structured information about the given variable. It is similar to var_dump() with one exception: the returned representation is valid PHP code. Parameters: expression The variable you want t