Ev::time

(PECL ev >= 0.2.0) Returns the current time in fractional seconds since the epoch. final public static double Ev::time ( void ) Returns the current time in fractional seconds since the epoch. Consider using Ev::now() Returns: Returns the current time in fractional seconds since the epoch. See also: Ev::now()

cubrid_seq_put

(PECL CUBRID >= 8.3.0) Update the element value of sequence type column using OID bool cubrid_seq_put ( resource $conn_identifier, string $oid, string $attr_name, int $index, string $seq_element ) The cubrid_seq_put() function is used to update the content of the requested element in a sequent type attribute using OID. Parameters: conn_identifier Connection identifier.

ArrayAccess::offsetExists

(PHP 5 >= 5.0.0, PHP 7) Whether an offset exists abstract public boolean ArrayAccess::offsetExists ( mixed $offset ) Whether or not an offset exists. This method is executed when using isset() or empty() on objects implementing ArrayAccess. Note: When using empty() ArrayAccess::offsetGet() will be called and checked if empty only if ArrayAccess::offsetExists() returns TRUE. Parameters:

SolrDocument::offsetExists

(PECL solr >= 0.9.2) Checks if a particular field exists public bool SolrDocument::offsetExists ( string $fieldName ) Checks if a particular field exists. This is used when the object is treated as an array. Parameters: fieldName The name of the field. Returns: Returns TRUE on success or FALSE on failure.

Thread::isJoined

(PECL pthreads >= 2.0.0) State Detection public boolean Thread::isJoined ( void ) Tell if the referenced Thread has been joined Returns: A boolean indication of state Examples: Detect the state of the referenced Thread <?php class My extends Thread {     public function run() {         $this->synchronized(functio

PDF_open_file

(PHP 4 >= 4.0.5, PECL pdflib >= 1.0.0) Create PDF file [deprecated] bool PDF_open_file ( resource $p, string $filename ) Creates a new PDF file using the supplied file name. Returns TRUE on success or FALSE on failure. This function is deprecated since PDFlib version 6, use PDF_begin_document() instead.

db2_escape_string

(PECL ibm_db2 >= 1.6.0) Used to escape certain characters string db2_escape_string ( string $string_literal ) Prepends backslashes to special characters in the string argument. Parameters: string_literal The string that contains special characters that need to be modified. Characters that are prepended with a backslash are \x00, \n, \r, \, ', " and \x1a.

ncurses_filter

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Set LINES for iniscr() and newterm() to 1 void ncurses_filter ( void ) This function is EXPERIMENTAL. The behaviour of this function, its name, and surrounding documentation may change without notice in a future release of PHP. This function should be used at your own risk. This function i

ibase_blob_cancel

(PHP 5, PHP 7) Cancel creating blob bool ibase_blob_cancel ( resource $blob_handle ) This function will discard a BLOB if it has not yet been closed by ibase_blob_close(). Parameters: blob_handle A BLOB handle opened with ibase_blob_create(). Returns: Returns TRUE on success or FALSE on failure.

Iterator::next

(PHP 5 >= 5.0.0, PHP 7) Move forward to next element abstract public void Iterator::next ( void ) Moves the current position to the next element. Note: This method is called after each foreach loop. Returns: Any returned value is ignored.