EventHttpRequest::getInputBuffer

(PECL event >= 1.4.0-beta) Returns the input buffer public EventBuffer EventHttpRequest::getInputBuffer ( void ) Returns the input buffer. Returns: Returns the input buffer. See also: EventHttpRequest::getOutputBuffer() -

GearmanTask::isKnown

(PECL gearman >= 0.5.0) Determine if task is known public bool GearmanTask::isKnown ( void ) Gets the status information for whether or not this task is known to the job server. Returns: TRUE if the task is known, FALSE otherwise.

SolrQuery::getExpand

(PECL solr >= 2.2.0) Returns true if group expanding is enabled public bool SolrQuery::getExpand ( void ) Returns TRUE if group expanding is enabled

SWFText::getWidth

(PHP 5 <= 5.3.0, PECL ming SVN) Computes string's width float SWFText::getWidth ( string $string ) Returns the rendered width of the string at the text object's current font, scale, and spacing settings. 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 sho

pg_lo_close

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Close a large object bool pg_lo_close ( resource $large_object ) pg_lo_close() closes a large object. large_object is a resource for the large object from pg_lo_open(). To use the large object interface, it is necessary to enclose it within a transaction block. Note: This function used to be called pg_loclose(). Parameters: result

Logical Operators

Examples: Logical operators illustrated The reason for the two different variations of "and" and "or" operators is that they operate at different precedences. (See Operator Precedence.) <?php // -------------------- // foo() will never get called as those operators are short-circuit $a = (false && foo()); $b = (true  || foo()); $c = (false and foo()); $d = (true  or  foo()); // -------------------- // "||" has a greater precedence than "or" // The res

SQLite3::lastInsertRowID

(PHP 5 >= 5.3.0, PHP 7) Returns the row ID of the most recent INSERT into the database public int SQLite3::lastInsertRowID ( void ) Returns the row ID of the most recent INSERT into the database. Returns: Returns the row ID of the most recent INSERT into the database

fann_subset_train_data

(PECL fann >= 1.0.0) Returns an copy of a subset of the train data resource fann_subset_train_data ( resource $data, int $pos, int $length ) Returns an copy of a subset of the train data resource, starting at position pos and length elements forward. The fann_subset_train_data(train_data, 0, fann_length_train_data(train_data)) do the same as fann_duplicate_train_data() Parameters:

DirectoryIterator::seek

(PHP 5 >= 5.3.0, PHP 7) Seek to a DirectoryIterator item public void DirectoryIterator::seek ( int $position ) Seek to a given position in the DirectoryIterator. Parameters: position The zero-based numeric position to seek to. Returns: No value is returned. Examples: DirectoryIter

ociplogon

(PHP 4, PHP 5, PHP 7, PECL OCI8 >= 1.0.0) Alias of oci_pconnect() Alias of oci_pconnect() This alias has been DEPRECATED as of PHP 5.4.0. Relying on this alias is highly discouraged.