SQLite3::query

(PHP 5 >= 5.3.0, PHP 7) Executes an SQL query public SQLite3Result SQLite3::query ( string $query ) Executes an SQL query, returning an SQLite3Result object if the query returns results. Parameters: query The SQL query to execute. Returns: Returns an SQLite3Result object if the query returns results. Otherwise, returns TRUE if the query succee

GearmanTask::uuid

(PECL gearman <= 0.5.0) Get the unique identifier for a task (deprecated) public string GearmanTask::uuid ( void ) Returns the unique identifier for this task. This is assigned by the GearmanClient, as opposed to the job handle which is set by the Gearman job server. Note: This method has been replaced by GearmanTask::unique() in the 0.6.0 release of the Gearman extension. Returns: The uni

EmptyIterator::key

(PHP 5 >= 5.1.0, PHP 7) The key() method public scalar EmptyIterator::key ( void ) This function must not be called. It throws an exception upon access. Returns: No value is returned. This function is currently not documented; only its argument list is available. Exception: Throws an Exception if called.

SolrQuery::getFacet

(PECL solr >= 0.9.2) Returns the value of the facet parameter public bool SolrQuery::getFacet ( void ) Returns the value of the facet parameter. Returns: Returns a boolean on success and NULL if not set

com_message_pump

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Process COM messages, sleeping for up to timeoutms milliseconds bool com_message_pump ([ int $timeoutms = 0 ] ) This function will sleep for up to timeoutms milliseconds, or until a message arrives in the queue. The purpose of this function is to route COM calls between apartments and handle various synchronization issues. This allows your script to wait efficiently for events to be trigg

Locale::getRegion

(PHP 5 >= 5.3.0, PHP 7, PECL intl >= 1.0.0) Gets the region for the input locale public static string Locale::getRegion ( string $locale ) Object oriented style Procedural style string locale_get_region ( string $locale ) Gets the region for the input locale. Parameters: locale The locale to extract the region code from Returns: The re

SplObjectStorage::addAll

(PHP 5 >= 5.3.0, PHP 7) Adds all objects from another storage public void SplObjectStorage::addAll ( SplObjectStorage $storage ) Adds all objects-data pairs from a different storage in the current storage. Parameters: storage The storage you want to import. Returns: No value is returned. Examp

mysqli::$client_version

(PHP 5, PHP 7) Returns the MySQL client version as a string int mysqli_get_client_version ( mysqli $link ) Object oriented style int $mysqli->client_version; Procedural style Returns client version number as an integer. Returns: A number that represents the MySQL client library version in format: main_version*10000 + minor_version *100 + sub_version. For example, 4.1.0 is returned as 40100.

Imagick::despeckleImage

(PECL imagick 2.0.0) Reduces the speckle noise in an image bool Imagick::despeckleImage ( void ) Reduces the speckle noise in an image while preserving the edges of the original image. Returns: Returns TRUE on success. Exception: Throws ImagickException on error. Examples: Imagick::despeckleImage() <?

Imagick::getImageFormat

(PECL imagick 2.0.0) Returns the format of a particular image in a sequence string Imagick::getImageFormat ( void ) Returns the format of a particular image in a sequence. Returns: Returns a string containing the image format on success. Exception: Throws ImagickException on error.