CachingIterator::rewind

(PHP 5, PHP 7) Rewind the iterator public void CachingIterator::rewind ( void ) Rewind the iterator. Returns: No value is returned. This function is currently not documented; only its argument list is available.

m_transinqueue

(PHP 4 >= 4.3.9, PHP 5 <= 5.0.5, PECL mcve >= 1.0.0) Number of transactions in client-queue int m_transinqueue ( resource $conn ) Parameters: conn An MCVE_CONN resource returned by m_initengine(). Returns: This function is currently not documented; only its argument list is available.

EventBufferEvent::readBuffer

(PECL event >= 1.2.6-beta) Drains the entire contents of the input buffer and places them into buf public bool EventBufferEvent::readBuffer ( EventBuffer $buf ) Drains the entire contents of the input buffer and places them into buf . Parameters: buf Target buffer Returns: Returns TRUE on success; Otherwise FALSE.

ifx_query

(PHP 4, PHP <=5.2.0) Send Informix query resource ifx_query ( string $query, resource $link_identifier [, int $cursor_type [, mixed $blobidarray ]] ) Sends a query to the currently active database on the server that's associated with the specified link identifier. For "select-type" queries a cursor is declared and opened. Non-select queries are "execute immediate". For either query type the number of (estimated or rea

rrd_info

(PECL rrd >= 0.9.0) Gets information about rrd file array rrd_info ( string $filename ) Returns information about particular RRD database file. Parameters: file RRD database file name. Returns: Array with information about requsted RRD file, FALSE when error occurs.

ZMQPoll::getLastErrors

(PECL zmq >= 0.5.0) Get poll errors public array ZMQPoll::getLastErrors ( void ) Returns the ids of the objects that had errors in the last poll. Returns: Returns an array containing ids for the items that had errors in the last poll. Empty array is returned if there were no errors.

apache_response_headers

(PHP 4 >= 4.3.0, PHP 5, PHP 7) Fetch all HTTP response headers array apache_response_headers ( void ) Fetch all HTTP response headers. Returns: An array of all Apache response headers on success or FALSE on failure. Changelog: 5.5.7 This function became available in the CLI server. 5.4.0 This function became availabl

urlencode

(PHP 4, PHP 5, PHP 7) URL-encodes string string urlencode ( string $str ) This function is convenient when encoding a string to be used in a query part of a URL, as a convenient way to pass variables to the next page. Parameters: str The string to be encoded. Returns: Returns a string in which all non-alphanumeric characters except -_. have been

pspell_config_data_dir

(PHP 5, PHP 7) location of language data files bool pspell_config_data_dir ( int $conf, string $directory ) Returns: Returns TRUE on success or FALSE on failure. This function is currently not documented; only its argument list is available.

ReflectionMethod::isFinal

(PHP 5, PHP 7) Checks if method is final public bool ReflectionMethod::isFinal ( void ) Checks if the method is final. Returns: TRUE if the method is final, otherwise FALSE See also: ReflectionMethod::isStatic() -