maxdb_stmt_send_long_data

(PECL maxdb 1.0) Send data in blocks bool maxdb_stmt_send_long_data ( resource $stmt, int $param_nr, string $data ) Procedural style Object oriented style bool maxdb_stmt::stmt_send_long_data ( int $param_nr , string $data ) Allows to send parameter data to the server in pieces (or chunks). This function can be called multiple times to send the parts of a character or binary data value for a column, which must be one of the

FilesystemIterator::setFlags

(PHP 5 >= 5.3.0, PHP 7) Sets handling flags public void FilesystemIterator::setFlags ([ int $flags ] ) Sets handling flags. Parameters: flags The handling flags to set. See the FilesystemIterator constants. Returns: No value is returned. Examples: FilesystemIterator::key() example

is_dir

(PHP 4, PHP 5, PHP 7) Tells whether the filename is a directory bool is_dir ( string $filename ) Tells whether the given filename is a directory. Parameters: filename Path to the file. If filename is a relative filename, it will be checked relative to the current working directory. If filename is a symbolic or hard link then the link will be resolved and checked. If you h

stream_get_transports

(PHP 5, PHP 7) Retrieve list of registered socket transports array stream_get_transports ( void ) Returns an indexed array containing the name of all socket transports available on the running system. Returns: Returns an indexed array of socket transports names. Examples: Using stream_get_transports() <?php $xportlist 

OAuth::getCAPath

(PECL OAuth >= 0.99.8) Gets CA information public array OAuth::getCAPath ( void ) Gets the Certificate Authority information, which includes the ca_path and ca_info set by OAuth::setCaPath(). Returns: An array of Certificate Authority information, specifically as ca_path and ca_info keys within the returned associative array. This function is currently not d

streamWrapper::stream_cast

(PHP 5 >= 5.3.0, PHP 7) Retrieve the underlaying resource public resource streamWrapper::stream_cast ( int $cast_as ) This method is called in response to stream_select(). Parameters: cast_as Can be STREAM_CAST_FOR_SELECT when stream_select() is calling stream_cast() or STREAM_CAST_AS_STREAM when stream_cast() is called for other uses. Returns:

ob_get_clean

(PHP 4 >= 4.3.0, PHP 5, PHP 7) Get current buffer contents and delete current output buffer string ob_get_clean ( void ) Gets the current buffer contents and delete current output buffer. ob_get_clean() essentially executes both ob_get_contents() and ob_end_clean(). The output buffer must be started by ob_start() with PHP_OUTPUT_HANDLER_CLEANABLE flag. Otherwise ob_get_clean() will not work. Retu

cairo_font_options_equal

(PECL cairo >= 0.1.0) Description bool cairo_font_options_equal ( CairoFontOptions $options, CairoFontOptions $other ) The function description goes here. Parameters: options Description... other Description... Returns: What is returned on success and failure This functio

fann_set_cascade_output_change_fraction

(PECL fann >= 1.0.0) Sets the cascade output change fraction bool fann_set_cascade_output_change_fraction ( resource $ann, float $cascade_output_change_fraction ) Sets the cascade output change fraction. Parameters: ann Neural network resource. cascade_output_change_fraction The cascade output change fraction. Retur

DateTimeImmutable::setTime

(PHP 5 >= 5.5.0, PHP 7) Sets the time public DateTimeImmutable DateTimeImmutable::setTime ( int $hour, int $minute [, int $second = 0 ] ) Like DateTime::setTime() but works with DateTimeImmutable.