geoip_region_name_by_code

(PECL geoip >= 1.0.4) Returns the region name for some country and region code combo string geoip_region_name_by_code ( string $country_code, string $region_code ) The geoip_region_name_by_code() function will return the region name corresponding to a country and region code combo. In the United States, the region code corresponds to the two-letter abbreviation of each state. In Canada, the region code corresponds to th

proc_terminate

(PHP 5, PHP 7) Kills a process opened by proc_open bool proc_terminate ( resource $process [, int $signal = 15 ] ) Signals a process (created using proc_open()) that it should terminate. proc_terminate() returns immediately and does not wait for the process to terminate. proc_terminate() allows you terminate the process and continue with other tasks. You may poll the process (to see if it has stopped yet) by using the pro

maxdb_fetch_fields

(PECL maxdb >= 1.0) Returns an array of resources representing the fields in a result set mixed maxdb_fetch_fields ( resource $result ) Procedural style Object oriented style mixed maxdb_result::fetch_fields ( void ) This function serves an identical purpose to the maxdb_fetch_field() function with the single difference that, instead of returning one resource at a time for each field, the columns are returned as an array

MongoCursor::timeout

(PECL mongo >=1.0.3) Sets a client-side timeout for this query public MongoCursor MongoCursor::timeout ( int $ms ) A timeout can be set at any time and will affect subsequent queries on the cursor, including fetching more results from the database. Parameters: ms The number of milliseconds for the cursor to wait for a response. Use -1 to wait forever. By default, the c

ingres_execute

(PECL ingres >= 1.1.0) Execute a prepared query bool ingres_execute ( resource $result [, array $params [, string $types ]] ) Execute a query prepared using ingres_prepare(). Note: Related Configurations See also the ingres.describe, ingres.scrollable and ingres.utf8 directives in Runtime Configuration. Parameters: result The result query identifier

stats_cdf_noncentral_chisquare

(PECL stats >= 1.0.0) Calculates any one parameter of the non-central chi-square distribution given values for the others. float stats_cdf_noncentral_chisquare ( float $par1, float $par2, float $par3, int $which ) Parameters: par1 par2 par3 which Return

ArrayObject::serialize

(PHP 5 >= 5.3.0, PHP 7) Serialize an ArrayObject public string ArrayObject::serialize ( void ) Serializes an ArrayObject. Returns: The serialized representation of the ArrayObject. This function is currently not documented; only its argument list is available. Examples: ArrayObject::serial

m_destroyconn

(PHP 4 >= 4.3.9, PHP 5 <= 5.0.5, PECL mcve >= 1.0.0) Destroy the connection and MCVE_CONN structure bool m_destroyconn ( resource $conn ) Parameters: conn An MCVE_CONN resource returned by m_initengine(). Returns: Returns TRUE. This function is currently not documented; only its argument list is available

gupnp_root_device_get_available

(PECL gupnp >= 0.1.0) Check whether root device is available bool gupnp_root_device_get_available ( resource $root_device ) Get whether or not root_device is available (announcing its presence). Parameters: root_device A root device identifier, returned by gupnp_root_device_new(). Returns: Returns TRUE on success or FALSE on failure.

SolrQuery::getTermsUpperBound

(PECL solr >= 0.9.2) Returns the term to stop at public string SolrQuery::getTermsUpperBound ( void ) Returns the term to stop at Returns: Returns a string on success and NULL if not set.