Gmagick::setfilename

(PECL gmagick >= Unknown) Sets the filename before you read or write the image public Gmagick Gmagick::setfilename ( string $filename ) Sets the filename before you read or write an image file. Parameters: filename The image filename. Returns: The Gmagick object on success Exception: Throws an GmagickException

PDOStatement::closeCursor

(PHP 5 >= 5.1.0, PHP 7, PECL pdo >= 0.9.0) Closes the cursor, enabling the statement to be executed again. public bool PDOStatement::closeCursor ( void ) PDOStatement::closeCursor() frees up the connection to the server so that other SQL statements may be issued, but leaves the statement in a state that enables it to be executed again. This method is useful for database drivers that do not support executing a PDOSt

ldap_parse_result

(PHP 4 >= 4.0.5, PHP 5, PHP 7) Extract information from result bool ldap_parse_result ( resource $link, resource $result, int &$errcode [, string &$matcheddn [, string &$errmsg [, array &$referrals ]]] ) Parses an LDAP search result. Parameters: link An LDAP link identifier, returned by ldap_connect(). result_identifier

RarEntry::getVersion

(PECL rar >= 0.1) Get minimum version of RAR program required to unpack the entry public int RarEntry::getVersion ( void ) Returns minimum version of RAR program (e.g. WinRAR) required to unpack the entry. It is encoded as 10 * major version + minor version. Returns: Returns the version or FALSE on error. Examples: RarEntry::getVers

ncurses_move

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Move output position int ncurses_move ( int $y, int $x ) Parameters: y x This function is EXPERIMENTAL. The behaviour of this function, its name, and surrounding documentation may change without notice in a future release of PHP. This

ImagickPixel::getColorValueQuantum

(No version information available, might only be in Git) Description public mixed ImagickPixel::getColorValueQuantum ( void ) Gets the quantum value of a color in the ImagickPixel. Return value is a float if ImageMagick was compiled with HDRI, otherwise an integer. Returns: The quantum value of the color element. Float if ImageMagick was compiled with HDRI, otherwise an int.

Yaf_Dispatcher::initView

(Yaf >=1.0.0) Initialize view and return it public Yaf_View_Interface Yaf_Dispatcher::initView ( string $templates_dir [, array $options ] ) Parameters: templates_dir options Returns:

IntlChar::getPropertyValueEnum

(PHP 7) Get the property value for a given value name public static int IntlChar::getPropertyValueEnum ( int $property, string $name ) Returns the property value integer for a given value name, as specified in the Unicode database file PropertyValueAliases.txt. Short, long, and any other variants are recognized. Note: Some of the names in PropertyValueAliases.txt will only be recognized with IntlChar::PROPERTY_GENERAL_CA

SDO_DAS_XML::saveFile

(^) Saves the SDO_DAS_XML_Document object to a file void SDO_DAS_XML::saveFile ( SDO_XMLDocument $xdoc, string $xml_file [, int $indent ] ) Saves the SDO_DAS_XML_Document object to a file. Parameters: xdoc SDO_DAS_XML_Document object. xml_file xml file. indent Optional argument to specify that the

ReflectionExtension::info

(PHP 5, PHP 7) Print extension info public void ReflectionExtension::info ( void ) Prints out the "phpinfo()" snippet for the given extension. Returns: Information about the extension. Examples: ReflectionExtension::info() example <?php $ext = new ReflectionExtension('mysqli'); $ext->info(); ?> The above exam