spl_autoload_unregister

(PHP 5 >= 5.1.2, PHP 7) Unregister given function as __autoload() implementation bool spl_autoload_unregister ( mixed $autoload_function ) Removes a function from the autoload queue. If the queue is activated and empty after removing the given function then it will be deactivated. When this function results in the queue being deactivated, any __autoload function that previously existed will not be reactivated.

ps_fill

(PECL ps >= 1.1.0) Fills the current path bool ps_fill ( resource $psdoc ) Fills the path constructed with previously called drawing functions like ps_lineto(). Parameters: psdoc Resource identifier of the postscript file as returned by ps_new(). Returns: Returns TRUE on success or FALSE on failure.

IntlTimeZone::getDisplayName

(PHP 5.5.0, PHP 7, PECL >= 3.0.0a1) Get a name of this time zone suitable for presentation to the user public string IntlTimeZone::getDisplayName ([ bool $isDaylight [, integer $style [, string $locale ]]] ) Parameters: isDaylight style locale Returns:

Imagick::annotateImage

(PECL imagick 2.0.0) Annotates an image with text bool Imagick::annotateImage ( ImagickDraw $draw_settings, float $x, float $y, float $angle, string $text ) Annotates an image with text. Parameters: draw_settings The ImagickDraw object that contains settings for drawing the text x Horizontal offset in pixels to the left of text

EventBase::gotExit

(PECL event >= 1.2.6-beta) Checks if the event loop was told to exit public bool EventBase::gotExit ( void ) Checks if the event loop was told to exit by EventBase::exit() . Returns: Returns TRUE, event loop was told to exit by EventBase::exit() . Otherwise FALSE. See also: EventBase::exit() -

fileatime

(PHP 4, PHP 5, PHP 7) Gets last access time of file int fileatime ( string $filename ) Gets the last access time of the given file. Parameters: filename Path to the file. Returns: Returns the time the file was last accessed, or FALSE on failure. The time is returned as a Unix timestamp. Exception: Upon failure, a

SolrInputDocument::getFieldNames

(PECL solr >= 0.9.2) Returns an array containing all the fields in the document public array SolrInputDocument::getFieldNames ( void ) Returns an array containing all the fields in the document. Returns: Returns an array on success and FALSE on failure.

kadm5_init_with_password

(PECL kadm5 >= 0.2.3) Opens a connection to the KADM5 library resource kadm5_init_with_password ( string $admin_server, string $realm, string $principal, string $password ) Opens a connection with the KADM5 library using the principal and the given password to obtain initial credentials from the admin_server. Parameters: admin_server The server.

DOMNode::getLineNo

(PHP 5 >= 5.3.0, PHP 7) Get line number for a node public int DOMNode::getLineNo ( void ) Gets line number for where the node is defined. Returns: Always returns the line number where the node was defined in. Examples: DOMNode::getLineNo() example <?php // XML dump for below example $xml = <<<XML <?xml v

pg_parameter_status

(PHP 5, PHP 7) Looks up a current parameter setting of the server. string pg_parameter_status ([ resource $connection ], string $param_name ) Looks up a current parameter setting of the server. Certain parameter values are reported by the server automatically at connection startup or whenever their values change. pg_parameter_status() can be used to interrogate these settings. It returns the current value of a parameter if