SplQueue::__construct

(PHP 5 >= 5.3.0, PHP 7) Constructs a new queue implemented using a doubly linked list SplQueue::__construct ( void ) This constructs a new empty queue. Note: This method automatically sets the iterator mode to SplDoublyLinkedList::IT_MODE_FIFO. Returns: No value is returned. Examples: SplQueue::__construct() example <?php $q = 

opcache_is_script_cached

(PHP 5 >= 5.6.0, PHP 7, PECL ZendOpcache >= 7.0.4) Tells whether a script is cached in OPCache boolean opcache_is_script_cached ( string $file ) This function checks if a PHP script has been cached in OPCache. This can be used to more easily detect the "warming" of the cache for a particular script. Parameters: file The path to the PHP script to be checked.

EventHttpConnection::setRetries

(PECL event >= 1.2.6-beta) Sets the retry limit for the connection public void EventHttpConnection::setRetries ( int $retries ) Sets the retry limit for the connection Parameters: retries The retry limit. -1 means infinity. Returns: No value is returned.

parse_ini_file

(PHP 4, PHP 5, PHP 7) Parse a configuration file array parse_ini_file ( string $filename [, bool $process_sections = false [, int $scanner_mode = INI_SCANNER_NORMAL ]] ) parse_ini_file() loads in the ini file specified in filename, and returns the settings in it in an associative array. The structure of the ini file is the same as the php.ini's. Parameters: filename T

pg_version

(PHP 5, PHP 7) Returns an array with client, protocol and server version (when available) array pg_version ([ resource $connection ] ) pg_version() returns an array with the client, protocol and server version. Protocol and server versions are only available if PHP was compiled with PostgreSQL 7.4 or later. For more detailed server information, use pg_parameter_status(). Parameters:

ncurses_wborder

(PHP 4 >= 4.3.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Draws a border around the window using attributed characters int ncurses_wborder ( resource $window, int $left, int $right, int $top, int $bottom, int $tl_corner, int $tr_corner, int $bl_corner, int $br_corner ) Draws the specified lines and corners around the passed window. Use ncurses_border() for borders around the main window. Parameters:

SDO_DAS_Relational::createRootDataObject

(^) Returns the special root object in an otherwise empty data graph. Used when creating a data graph from scratch. SDODataObject SDO_DAS_Relational::createRootDataObject ( void ) Returns the special root object at the top of an otherwise empty data graph. This call is used when the application wants to create a data graph from scratch, without having called executeQuery() to create a data graph. The special root object

Stomp::begin

(PECL stomp >= 0.1.0) Starts a transaction public bool Stomp::begin ( string $transaction_id [, array $headers ] ) Object oriented style (method): Procedural style: bool stomp_begin ( resource $link , string $transaction_id [, array $headers ] ) Starts a transaction. Parameters: link Procedural style only: The stomp link identifier returned by stomp_connect().

VarnishLog::__construct

(PECL varnish >= 0.6) Varnishlog constructor public VarnishLog::__construct ([ array $args ] ) Parameters: args Configuration arguments. The possible keys are: VARNISH_CONFIG_IDENT - local varnish instance ident path Returns:

maxdb_stat

(PECL maxdb >= 1.0) Gets the current system status string maxdb_stat ( resource $link ) Procedural style Object oriented style string maxdb::stat ( void ) maxdb_stat() returns a string containing several information about the MaxDB server running. Returns: A string describing the server status. FALSE if an error occurred. Examples: