vsprintf

(PHP 4 >= 4.1.0, PHP 5, PHP 7) Return a formatted string string vsprintf ( string $format, array $args ) Operates as sprintf() but accepts an array of arguments, rather than a variable number of arguments. Parameters: format See sprintf() for a description of format. args See sprintf() for a description of format.

MongoId::__toString

(PECL mongo >= 0.8.0) Returns a hexidecimal representation of this id public string MongoId::__toString ( void ) Returns: This id. Examples: MongoId::__toString() example <?php $m = new MongoClient(); $collection = $m->selectDB("foo")->selectCollection("bar"); $collection->insert(array( "x" => "y" )); $c

rpm_get_tag

(PECL rpmreader >= 0.1.0) Retrieves a header tag from an RPM file mixed rpm_get_tag ( resource $rpmr, int $tagnum ) rpm_get_tag() will retrieve a given tag from the RPM file's header and return it. Parameters: rpmr A file pointer resource successfully opened by rpm_open(). tagnum The tag number to retrieve from the RPM header. This v

ReflectionZendExtension::getAuthor

(PHP >= 5.4.0) Gets author public string ReflectionZendExtension::getAuthor ( void ) Returns: This function is currently not documented; only its argument list is available.

MongoLog::setLevel

(PECL mongo >= 1.2.3) Sets the level(s) to be logged public static void MongoLog::setLevel ( int $level ) This function can be used to control logging verbosity and the types of activities that should be logged. The MongoLog level constants may be used with bitwise operators to specify multiple levels. <?php // first, specify a logging module MongoLog::setModule(MongoLog::CON); // log messages for every level Mon

fdf_get_flags

(PHP 4 >= 4.3.0, PHP 5, PHP 7) Gets the flags of a field int fdf_get_flags ( resource $fdf_document, string $fieldname, int $whichflags ) This function is currently not documented; only its argument list is available.

newt_wait_for_key

(PECL newt >= 0.1) Doesn't return until a key has been pressed void newt_wait_for_key ( void ) This function doesn't return until a key has been pressed. The keystroke is then ignored. If a key is already in the terminal's buffer, this function discards a keystroke and returns immediately. Returns: No value is returned. See also

Imagick::getGravity

(No version information available, might only be in Git) Gets the gravity int Imagick::getGravity ( void ) Gets the global gravity property for the Imagick object. This method is available if Imagick has been compiled against ImageMagick version 6.4.0 or newer. Returns: Returns the gravity property. Refer to the list of gravity constants.

DateTime::setTimezone

(PHP 5 >= 5.2.0, PHP 7) Sets the time zone for the DateTime object public DateTime DateTime::setTimezone ( DateTimeZone $timezone ) Object oriented style Procedural style DateTime date_timezone_set ( DateTime $object , DateTimeZone $timezone ) Sets a new timezone for a DateTime object. Parameters: object Procedural style only: A DateTime object returned by date_create(

XMLReader::moveToNextAttribute

(PHP 5 >= 5.1.0, PHP 7) Position cursor on the next Attribute public bool XMLReader::moveToNextAttribute ( void ) Moves cursor to the next Attribute if positioned on an Attribute or moves to first attribute if positioned on an Element. Returns: Returns TRUE on success or FALSE on failure. See also: XMLReader: