IntlCalendar::isLenient

(PHP 5.5.0, PHP 7, PECL >= 3.0.0a1) Whether date/time interpretation is in lenient mode public bool IntlCalendar::isLenient ( void ) Object oriented style Procedural style bool intlcal_is_lenient ( IntlCalendar $cal ) Returns whether the current date/time interpretations is lenient (the default). If that is case, some out of range values for fields will be accepted instead of raising an error. Parame

ncurses_halfdelay

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Put terminal into halfdelay mode int ncurses_halfdelay ( int $tenth ) Parameters: tenth 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 function should be

ReflectionMethod::getPrototype

(PHP 5, PHP 7) Gets the method prototype (if there is one). public ReflectionMethod ReflectionMethod::getPrototype ( void ) Returns the methods prototype. Returns: A ReflectionMethod instance of the method prototype. Exception: A ReflectionException exception is thrown if the method does not have a prototype. Examples:

fdf_set_javascript_action

(PHP 4 >= 4.0.2, PHP 5, PHP 7) Sets an javascript action of a field bool fdf_set_javascript_action ( resource $fdf_document, string $fieldname, int $trigger, string $script ) Sets a javascript action for the given field. Parameters: fdf_document The FDF document handle, returned by fdf_create(), fdf_open() or fdf_open_string(). fieldname

Imagick::colorMatrixImage

(No version information available, might only be in Git) Description public void Imagick::colorMatrixImage ( string $color_matrix = Imagick::CHANNEL_DEFAULT ) Apply color transformation to an image. The method permits saturation changes, hue rotation, luminance to alpha, and various other effects. Although variable-sized transformation matrices can be used, typically one uses a 5x5 matrix for an RGBA image and a 6x6 for CM

PharFileInfo::isCRCChecked

(PHP >= 5.3.0, PECL phar >= 1.0.0) Returns whether file entry has had its CRC verified public bool PharFileInfo::isCRCChecked ( void ) This returns whether a file within a Phar archive has had its CRC verified. Returns: TRUE if the file has had its CRC verified, FALSE if not. Examples: A PharFileInfo::isCRCChecked() example

ldap_get_values

(PHP 4, PHP 5, PHP 7) Get all values from a result entry array ldap_get_values ( resource $link_identifier, resource $result_entry_identifier, string $attribute ) Reads all the values of the attribute in the entry in the result. This call needs a result_entry_identifier, so needs to be preceded by one of the ldap search calls and one of the calls to get an individual entry. You application will either be hard coded to lo

mcrypt_get_cipher_name

(PHP 4, PHP 5, PHP 7) Gets the name of the specified cipher string mcrypt_get_cipher_name ( int $cipher ) string mcrypt_get_cipher_name ( string $cipher ) mcrypt_get_cipher_name() is used to get the name of the specified cipher. mcrypt_get_cipher_name() takes the cipher number as an argument (libmcrypt 2.2.x) or takes the cipher name as an argument (libmcrypt 2.4.x or higher) and returns the name of the cipher or FALSE, i

sqlsrv_connect

(No version information available, might only be in Git) Opens a connection to a Microsoft SQL Server database resource sqlsrv_connect ( string $serverName [, array $connectionInfo ] ) Opens a connection to a Microsoft SQL Server database. By default, the connection is attempted using Windows Authentication. To connect using SQL Server Authentication, include "UID" and "PWD" in the connection options array.

RecursiveDirectoryIterator::__construct

(PHP 5 >= 5.1.2, PHP 7) Constructs a RecursiveDirectoryIterator public RecursiveDirectoryIterator::__construct ( string $path [, int $flags = FilesystemIterator::KEY_AS_PATHNAME | FilesystemIterator::CURRENT_AS_FILEINFO ] ) Constructs a RecursiveDirectoryIterator() for the provided path. Parameters: path The path of the directory to be iterated over.