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      */     

HaruDoc::insertPage

(PECL haru >= 0.0.1) Insert new page just before the specified page object HaruDoc::insertPage ( object $page ) Creates a new page and inserts just before the specified page. Parameters: page A valid HaruPage instance. Returns: Returns a new HaruPage instance. Exception: Throws a HaruException on error.

Gmagick::implodeimage

(PECL gmagick >= Unknown) Creates a new image as a copy public mixed Gmagick::implodeimage ( float $radius ) Creates a new image that is a copy of an existing one with the image pixels "imploded" by the specified percentage. Parameters: radius The radius of the implode Returns: Returns imploded Gmagick object. Exception

fbsql_table_name

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Get table name of field string fbsql_table_name ( resource $result, int $index ) fbsql_table_name() gets the name of the current table in the given result set. The fbsql_num_rows() function may be used to determine the number of tables in the result pointer. Parameters: result A result pointer returned by fbsql_list_tables().

metaphone

(PHP 4, PHP 5, PHP 7) Calculate the metaphone key of a string string metaphone ( string $str [, int $phonemes = 0 ] ) Calculates the metaphone key of str. Similar to soundex() metaphone creates the same key for similar sounding words. It's more accurate than soundex() as it knows the basic rules of English pronunciation. The metaphone generated keys are of variable length. Metaphone was developed by Lawrence Philips <

pg_copy_from

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Insert records into a table from an array bool pg_copy_from ( resource $connection, string $table_name, array $rows [, string $delimiter [, string $null_as ]] ) pg_copy_from() inserts records into a table from rows. It issues a COPY FROM SQL command internally to insert records. Parameters: connection PostgreSQL database connection reso

Gmagick::getimagehistogram

(PECL gmagick >= Unknown) Gets the image histogram public array Gmagick::getimagehistogram ( void ) Returns the image histogram as an array of GmagickPixel objects. Throw an GmagickException on error. Returns: Returns the image histogram as an array of GmagickPixel objects. Exception: Throws an GmagickException on error.

IntlCalendar::clear

(PHP 5.5.0, PHP 7, PECL >= 3.0.0a1) Clear a field or all fields public bool IntlCalendar::clear ([ int $field = NULL ] ) Object oriented style Procedural style bool intlcal_clear ( IntlCalendar $cal [, int $field = NULL ] ) Clears either all of the fields or a specific field. A cleared field is marked as unset, giving it the lowest priority against overlapping fields or even default values when calculating the time.

SWFDisplayItem::setDepth

(PHP 5 <= 5.3.0, PECL ming SVN) Sets z-order void SWFDisplayItem::setDepth ( int $depth ) swfdisplayitem::setdepth() sets the object's z-order to depth. Depth defaults to the order in which instances are created (by adding a shape/text to a movie)- newer ones are on top of older ones. If two objects are given the same depth, only the later-defined one can be moved. The object may be a swfshape(), a swfbutton(), a swfte

oci_field_is_null

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Checks if a field in the currently fetched row is NULL bool oci_field_is_null ( resource $statement, mixed $field ) Checks if the given field from the current row of statement is NULL. Parameters: statement A valid OCI statement identifier. field Can be the field's index (1-based) or name.