stream_filter_prepend

(PHP 4 >= 4.3.0, PHP 5, PHP 7) Attach a filter to a stream resource stream_filter_prepend ( resource $stream, string $filtername [, int $read_write [, mixed $params ]] ) Adds filtername to the list of filters attached to stream. Parameters: stream The target stream. filtername The filter name. read_write

xml_set_object

(PHP 4, PHP 5, PHP 7) Use XML Parser within an object bool xml_set_object ( resource $parser, object &$object ) This function allows to use parser inside object. All callback functions could be set with xml_set_element_handler() etc and assumed to be methods of object. Parameters: parser A reference to the XML parser to use inside the object. ob

stream_wrapper_register

(PHP 4 >= 4.3.2, PHP 5, PHP 7) Register a URL wrapper implemented as a PHP class bool stream_wrapper_register ( string $protocol, string $classname [, int $flags = 0 ] ) Allows you to implement your own protocol handlers and streams for use with all the other filesystem functions (such as fopen(), fread() etc.). Parameters: protocol The wrapper name to be registered.

mysqli_result::fetch_field_direct

(PHP 5, PHP 7) Fetch meta-data for a single field object mysqli_result::fetch_field_direct ( int $fieldnr ) Object oriented style Procedural style object mysqli_fetch_field_direct ( mysqli_result $result , int $fieldnr ) Returns an object which contains field definition information from the specified result set. Parameters: result Procedural style only: A result set ident

DOMDocument::saveHTML

(PHP 5, PHP 7) Dumps the internal document into a string using HTML formatting public string DOMDocument::saveHTML ([ DOMNode $node = NULL ] ) Creates an HTML document from the DOM representation. This function is usually called after building a new dom document from scratch as in the example below. Parameters: node Optional parameter to output a subset of the document

Yaf_Config_Simple::offsetSet

(Yaf >=1.0.0) The offsetSet purpose public void Yaf_Config_Simple::offsetSet ( string $name, string $value ) Parameters: name value Returns: This function is currently not documented; only its argument list is available.

stats_stat_correlation

(PECL stats >= 1.0.0) Not documented float stats_stat_correlation ( array $arr1, array $arr2 ) Parameters: arr1 arr2 Returns: This function is currently not documented; only its argument list is available.

mysqli_stmt::send_long_data

(PHP 5, PHP 7) Send data in blocks bool mysqli_stmt::send_long_data ( int $param_nr, string $data ) Object oriented style Procedural style bool mysqli_stmt_send_long_data ( mysqli_stmt $stmt , int $param_nr , string $data ) Allows to send parameter data to the server in pieces (or chunks), e.g. if the size of a blob exceeds the size of max_allowed_packet. This function can be called multiple times to send the parts of a cha

SVM::setOptions

(PECL svm >= 0.1.0) Set training parameters public bool SVM::setOptions ( array $params ) Set one or more training parameters. Parameters: params An array of training parameters, keyed on the SVM constants. Returns: Return true on success, throws SVMException on error.

openssl_csr_export

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Exports a CSR as a string bool openssl_csr_export ( resource $csr, string &$out [, bool $notext = true ] ) openssl_csr_export() takes the Certificate Signing Request represented by csr and stores it as ascii-armoured text into out, which is passed by reference. Parameters: csr openssl_csr_export() takes the Certificate Signing Reques