SolrDocument::unserialize

(PECL solr >= 0.9.2) Custom serialization of SolrDocument objects public void SolrDocument::unserialize ( string $serialized ) Custom serialization of SolrDocument objects Parameters: serialized An XML representation of the document. Returns: None.

Throwable::getLine

(PHP 7) Gets the line on which the object was instantiated abstract public int Throwable::getLine ( void ) Returns the line number where the thrown object was instantiated. Returns: Returns the line number where the thrown object was instantiated. See also: Exception::getLine() -

SphinxClient::setSortMode

(PECL sphinx >= 0.1.0) Set matches sorting mode public bool SphinxClient::setSortMode ( int $mode [, string $sortby ] ) Sets matches sorting mode. See available modes below. Sorting modes Constant Description SPH_SORT_RELEVANCE Sort by relevance in descending order (best matches first). SPH_SORT_ATTR_DESC Sort by an attribute in descending order (bigger attribute values first). SPH_SORT_ATTR_ASC Sort by an attribute in a

id3_get_frame_short_name

(PECL id3 >= 0.2) Get the short name of an ID3v2 frame string id3_get_frame_short_name ( string $frameId ) id3_get_frame_short_name() returns the short name for an ID3v2 frame. Parameters: frameId An ID3v2 frame Returns: Returns the frame short name or FALSE on errors. The values returned by id3_get_frame_short_name() are used in the array r

strspn

(PHP 4, PHP 5, PHP 7) Finds the length of the initial segment of a string consisting entirely of characters contained within a given mask. int strspn ( string $subject, string $mask [, int $start [, int $length ]] ) Finds the length of the initial segment of subject that contains only characters from mask. If start and length are omitted, then all of subject will be examined. If they are included, then the effect will be

db2_last_insert_id

(PECL ibm_db2 >= 1.7.1) Returns the auto generated ID of the last insert query that successfully executed on this connection string db2_last_insert_id ( resource $resource ) Returns the auto generated ID of the last insert query that successfully executed on this connection. The result of this function is not affected by any of the following: A single row INSERT statement with a VALUES clause for a table without an i

id3_get_genre_name

(PECL id3 >= 0.1) Get the name for a genre id string id3_get_genre_name ( int $genre_id ) id3_get_genre_name() returns the name for a genre id. Parameters: genre_id An integer ranging from 0 to 147 Returns: Returns the name as a string. Examples: id3_get_genre_name() example

ArrayAccess::offsetGet

(PHP 5 >= 5.0.0, PHP 7) Offset to retrieve abstract public mixed ArrayAccess::offsetGet ( mixed $offset ) Returns the value at specified offset. This method is executed when checking if offset is empty(). Parameters: offset The offset to retrieve. Returns: Can return all value types. Notes:

ReflectionClass::isInterface

(PHP 5, PHP 7) Checks if the class is an interface public bool ReflectionClass::isInterface ( void ) Checks whether the class is an interface. Returns: Returns TRUE on success or FALSE on failure. Examples: Basic usage of ReflectionClass::isInterface() <?php interface SomeInterface {     public function interfaceMethod

restore_include_path

(PHP 4 >= 4.3.0, PHP 5, PHP 7) Restores the value of the include_path configuration option void restore_include_path ( void ) Restores the include_path configuration option back to its original master value as set in php.ini Returns: No value is returned. Examples: restore_include_path() example <?php echo get_inc