readline_completion_function

(PHP 4, PHP 5, PHP 7) Registers a completion function bool readline_completion_function ( callable $function ) This function registers a completion function. This is the same kind of functionality you'd get if you hit your tab key while using Bash. Parameters: function You must supply the name of an existing function which accepts a partial command line and returns an arr

VarnishAdmin::banUrl

(PECL varnish >= 0.3) Ban an URL using a VCL expression public int VarnishAdmin::banUrl ( string $vcl_regex ) Parameters: vcl_regex URL regular expression in PCRE compatible syntax. It's based on the ban.url varnish command. Returns: Returns the varnish command status.

geoip_db_filename

(PECL geoip >= 1.0.1) Returns the filename of the corresponding GeoIP Database string geoip_db_filename ( int $database ) The geoip_db_filename() function returns the filename of the corresponding GeoIP Database. It does not indicate if the file exists or not on disk, only where the library is looking for the database. Parameters: database The database type as an int

ingres_unbuffered_query

(No version information available, might only be in Git) Send an unbuffered SQL query to Ingres mixed ingres_unbuffered_query ( resource $link, string $query [, array $params [, string $types ]] ) ingres_unbuffered_query() sends the given query to the Ingres server. The query becomes part of the currently open transaction. If there is no open transaction, ingres_unbuffered_query() opens a new transaction. To close the tran

TokyoTyrant::get

(PECL tokyo_tyrant >= 0.1.0) The get purpose public mixed TokyoTyrant::get ( mixed $keys ) This method is used to return a value or multiple values. This method accepts a string or an array as a value. Parameters: keys A string key or an array of string keys Returns: Returns a string or an array based on the given parameters. Throws a TokyoTyr

ImagickDraw::getTextUnderColor

(PECL imagick 2.0.0) Returns the text under color ImagickPixel ImagickDraw::getTextUnderColor ( void ) Returns the color of a background rectangle to place under text annotations. Returns: Returns an ImagickPixel object describing the color. This function is currently not documented; only its argument list is available.

Using namespaces: Aliasing/Importing

(PHP 5 >= 5.3.0, PHP 7) Examples: importing/aliasing with the use operator The ability to refer to an external fully qualified name with an alias, or importing, is an important feature of namespaces. This is similar to the ability of unix-based filesystems to create symbolic links to a file or to a directory. All versions of PHP that support namespaces support three kinds of aliasing

fann_set_activation_steepness_hidden

(PECL fann >= 1.0.0) Sets the steepness of the activation steepness for all neurons in the all hidden layers bool fann_set_activation_steepness_hidden ( resource $ann, float $activation_steepness ) Sets the steepness of the activation steepness for all neurons in the all hidden layers. Parameters: ann Neural network resource. activation_steepness

Phar::running

(PHP >= 5.3.0, PECL phar >= 2.0.0) Returns the full path on disk or full phar URL to the currently executing Phar archive final public static string Phar::running ([ bool $retphar = true ] ) Returns the full path to the running phar archive. This is intended for use much like the __FILE__ magic constant, and only has effect inside an executing phar archive. Inside the stub of an archive, Phar::running() returns "".

SolrDocument::offsetUnset

(PECL solr >= 0.9.2) Removes a field public void SolrDocument::offsetUnset ( string $fieldName ) Removes a field from the document. Parameters: fieldName The name of the field. Returns: No return value.