maxdb_report

(PECL maxdb 1.0) Enables or disables internal report functions bool maxdb_report ( int $flags ) Parameters: flags One of the MAXDB_REPORT_XXX constants. Returns: Returns TRUE on success or FALSE on failure. Examples: Procedural style <?php /* activate reporting */ maxdb

Phar::mungServer

(Unknown) Defines a list of up to 4 $_SERVER variables that should be modified for execution final public static void Phar::mungServer ( array $munglist ) Phar::mungServer() should only be called within the stub of a phar archive. Defines a list of up to 4 $_SERVER variables that should be modified for execution. Variables that can be modified to remove traces of phar execution are REQUEST_URI, PHP_SELF, SCRIPT_NAME and S

HaruPage::ellipse

(PECL haru >= 0.0.1) Append an ellipse to the current path bool HaruPage::ellipse ( float $x, float $y, float $xray, float $yray ) Appends an ellipse to the current path. Parameters: x Horizontal coordinate of the center. y Vertical coordinate of the center. xray The ray of the ellipse in the x dir

snmp3_walk

(PHP 4, PHP 5, PHP 7) Fetch all the SNMP objects from an agent array snmp3_walk ( string $host, string $sec_name, string $sec_level, string $auth_protocol, string $auth_passphrase, string $priv_protocol, string $priv_passphrase, string $object_id [, string $timeout = 1000000 [, string $retries = 5 ]] ) snmp3_walk() function is used to read all the values from an SNMP agent specified by the hostname. Even if the security

ArrayIterator::asort

(PHP 5 >= 5.2.0, PHP 7) Sort array by values public void ArrayIterator::asort ( void ) Sorts an array by values. Returns: No value is returned. This function is currently not documented; only its argument list is available. See also: ArrayIterator::ksort() -

Locale::lookup

(PHP 5 >= 5.3.0, PHP 7, PECL intl >= 1.0.0) Searches the language tag list for the best match to the language public static string Locale::lookup ( array $langtag, string $locale [, bool $canonicalize = false [, string $default ]] ) Object oriented style Procedural style string locale_lookup ( array $langtag , string $locale [, bool $canonicalize = false [, string $default ]] ) Searches the items in langtag for t

SAMConnection::receive

(PECL sam >= 0.1.0) Receive a message from a queue or subscription. SAMMessage SAMConnection::receive ( string $target [, array $properties ] ) Parameters: target The identity of the queue, topic or subscription from which to receive the message. properties An optional associative array of properties describing other parameters to co

cairo_scaled_font_glyph_extents

(PECL cairo >= 0.1.0) Description array cairo_scaled_font_glyph_extents ( CairoScaledFont $scaledfont, array $glyphs ) The function description goes here. Parameters: scaledfont Description... glyphs Description... Returns: What is returned on success and failure This fun

XMLWriter::writeComment

(PHP 5 >= 5.1.2, PHP 7, PECL xmlwriter >= 0.1.0) Write full comment tag bool XMLWriter::writeComment ( string $content ) Object oriented style Procedural style bool xmlwriter_write_comment ( resource $xmlwriter , string $content ) Writes a full comment. Parameters: xmlwriter Only for procedural calls. The XMLWriter resource that is being modified. This resource come

SQLite3::exec

(PHP 5 >= 5.3.0, PHP 7) Executes a result-less query against a given database public bool SQLite3::exec ( string $query ) Executes a result-less query against a given database. Parameters: query The SQL query to execute (typically an INSERT, UPDATE, or DELETE query). Returns: Returns TRUE if the query succeeded, FALSE on failure.