HaruDoc::getStreamSize

(PECL haru >= 0.0.1) Get the size of the temporary stream int HaruDoc::getStreamSize ( void ) Get the size of the temporary stream. Returns: Returns the size of the data in the temporary stream of the document. The size is zero if the document was not saved to the temporary stream. Exception: Throws a HaruException on error.

bind_textdomain_codeset

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Specify the character encoding in which the messages from the DOMAIN message catalog will be returned string bind_textdomain_codeset ( string $domain, string $codeset ) With bind_textdomain_codeset(), you can set in which encoding will be messages from domain returned by gettext() and similar functions. Parameters: domain The domain

fbsql_list_fields

(PHP 4 >= 4.0.6, PHP 5, PHP 7) List FrontBase result fields resource fbsql_list_fields ( string $database_name, string $table_name [, resource $link_identifier ] ) Retrieves information about the given table. Parameters: database_name The database name. table_name The table name. link_identifier A F

SolrQuery::getGroup

(PECL solr >= 2.2.0) Returns true if grouping is enabled public bool SolrQuery::getGroup ( void ) Returns true if grouping is enabled Returns: See also: SolrQuery::setGroup() -

PDO::inTransaction

(PHP 5 >= 5.3.3, Bundled pdo_pgsql, PHP 7) Checks if inside a transaction public bool PDO::inTransaction ( void ) Checks if a transaction is currently active within the driver. This method only works for database drivers that support transactions. Returns: Returns TRUE if a transaction is currently active, and FALSE if not.

ReflectionProperty::getDocComment

(PHP 5 >= 5.1.0, PHP 7) Gets the property doc comment public string ReflectionProperty::getDocComment ( void ) Gets the doc comment for a property. Returns: The property doc comment. Examples: ReflectionProperty::getDocComment() example <?php class Str {     /**      * @var int  The length of the string      */     

variant_div

(PHP 5, PHP 7) Returns the result from dividing two variants mixed variant_div ( mixed $left, mixed $right ) Divides left by right and returns the result. Parameters: left The left operand. right The right operand. Returns: Variant Division Rules If Then Both expressions are of the string, date, character, boole

CallbackFilterIterator::__construct

(PHP 5 >= 5.4.0, PHP 7) Create a filtered iterator from another iterator public CallbackFilterIterator::__construct ( Iterator $iterator , callable $callback ) Creates a filtered iterator using the callback to determine which items are accepted or rejected. Parameters: iterator The iterator to be filtered. callback The callback, which should return T

cairo_font_options_set_hint_style

(PECL cairo >= 0.1.0) Description void cairo_font_options_set_hint_style ( CairoFontOptions $options, int $hint_style ) The function description goes here. Parameters: options Description... hint_style Description... Returns: What is returned on success and failure This

restore_exception_handler

(PHP 5, PHP 7) Restores the previously defined exception handler function bool restore_exception_handler ( void ) Used after changing the exception handler function using set_exception_handler(), to revert to the previous exception handler (which could be the built-in or a user defined function). Returns: This function always returns TRUE. Exampl