Phar::decompress

(PHP >= 5.3.0, PECL phar >= 2.0.0) Decompresses the entire Phar archive public object Phar::decompress ([ string $extension ] ) Note: This method requires the php.ini setting phar.readonly to be set to 0 in order to work for Phar objects. Otherwise, a PharException will be thrown. For tar-based and phar-based phar archives, this method decompresses the entire archive. For Zip-based phar archives, this method fails

DOMElement::setAttributeNode

(PHP 5, PHP 7) Adds new attribute node to element public DOMAttr DOMElement::setAttributeNode ( DOMAttr $attr ) Adds new attribute node attr to element. Parameters: attr The attribute node. Returns: Returns old node if the attribute has been replaced or NULL. Exception: Raised if the node is readonly.

ibase_rollback

(PHP 5, PHP 7) Roll back a transaction bool ibase_rollback ([ resource $link_or_trans_identifier = NULL ] ) Rolls back a transaction. Parameters: link_or_trans_identifier If called without an argument, this function rolls back the default transaction of the default link. If the argument is a connection identifier, the default transaction of the corresponding connection w

gnupg_addencryptkey

(PECL gnupg >= 0.5) Add a key for encryption bool gnupg_addencryptkey ( resource $identifier, string $fingerprint ) Parameters: identifier The gnupg identifier, from a call to gnupg_init() or gnupg. fingerprint The fingerprint key. Returns: Returns TRUE on success or FALSE on failure.

Yaf_Action_Abstract::execute

(Yaf >=1.0.0) Action entry point abstract public mixed Yaf_Action_Abstract::execute ([ mixed $arg [, mixed $... ]] ) user should always define this method for a action, this is the entry point of an action. Yaf_Action_Abstract::execute() may have agruments. Note: The value retrived from the request is not safe. you should do some filtering work before you use it. Returns:

mysqli_driver::embedded_server_start

(PHP 5, PHP 7) Initialize and start embedded server bool mysqli_driver::embedded_server_start ( bool $start, array $arguments, array $groups ) Object oriented style Procedural style bool mysqli_embedded_server_start ( bool $start , array $arguments , array $groups ) This function is currently not documented; only its argument list is available.

fann_set_train_error_function

(PECL fann >= 1.0.0) Sets the error function used during training bool fann_set_train_error_function ( resource $ann, int $error_function ) Sets the error function used during training. The error functions are described further in error functions constants. Parameters: ann Neural network resource. error_function The error function co

fdf_set_ap

(PHP 4, PHP 5, PHP 7) Set the appearance of a field bool fdf_set_ap ( resource $fdf_document, string $field_name, int $face, string $filename, int $page_number ) Sets the appearance of a field (i.e. the value of the /AP key). Parameters: fdf_document The FDF document handle, returned by fdf_create(), fdf_open() or fdf_open_string(). field_name

PDO::quote

(PHP 5 >= 5.1.0, PHP 7, PECL pdo >= 0.2.1) Quotes a string for use in a query. public string PDO::quote ( string $string [, int $parameter_type = PDO::PARAM_STR ] ) PDO::quote() places quotes around the input string (if required) and escapes special characters within the input string, using a quoting style appropriate to the underlying driver. If you are using this function to build SQL statements, you are strongl

array_product

(PHP 5 >= 5.1.0, PHP 7) Calculate the product of values in an array number array_product ( array $array ) array_product() returns the product of values in an array. Parameters: array The array. Returns: Returns the product as an integer or float. Changelog: 5.3.6 The product of an empty