IntlCalendar::getActualMaximum

(PHP 5.5.0, PHP 7, PECL >= 3.0.0a1) The maximum value for a field, considering the objectʼs current time public int IntlCalendar::getActualMaximum ( int $field ) Object oriented style Procedural style int intlcal_get_actual_maximum ( IntlCalendar $cal , int $field ) Returns a fieldʼs relative maximum value around the current time. The exact semantics vary by field, but in the general case this is the value that would

timezone_name_get

(PHP 5 >= 5.2.0, PHP 7) Alias of DateTimeZone::getName() This function is an alias of: DateTimeZone::getName()

db2_field_num

(PECL ibm_db2 >= 1.0.0) Returns the position of the named column in a result set int db2_field_num ( resource $stmt, mixed $column ) Returns the position of the named column in a result set. Parameters: stmt Specifies a statement resource containing a result set. column Specifies the column in the result set. This can either be an

mqseries_begin

(PECL mqseries >= 0.10.0) MQseries MQBEGIN void mqseries_begin ( resource $hconn, array $beginOptions, resource &$compCode, resource &$reason ) The mqseries_begin() (MQBEGIN) call begins a unit of work that is coordinated by the queue manager, and that may involve external resource managers. Using mqseries_begin() starts the unit of work. Either mqseries_back() or mqseries_cmit() ends the unit of work.

openal_source_stop

(PECL openal >= 0.1.0) Stop playing the source bool openal_source_stop ( resource $source ) Parameters: source An Open AL(Source) resource (previously created by openal_source_create()). Returns: Returns TRUE on success or FALSE on failure. See also: openal_

gmp_popcount

(PHP 4 >= 4.0.4, PHP 5, PHP 7) Population count int gmp_popcount ( GMP $a ) Get the population count. Parameters: a Either a GMP number resource in PHP 5.5 and earlier, a GMP object in PHP 5.6 and later, or a numeric string provided that it is possible to convert the latter to a number. Returns: The population count of a, as an integer.

oci_execute

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Executes a statement bool oci_execute ( resource $statement [, int $mode = OCI_COMMIT_ON_SUCCESS ] ) Executes a statement previously returned from oci_parse(). After execution, statements like INSERT will have data committed to the database by default. For statements like SELECT, execution performs the logic of the query. Query results can subsequently be fetched in PHP with functions

Imagick::despeckleImage

(PECL imagick 2.0.0) Reduces the speckle noise in an image bool Imagick::despeckleImage ( void ) Reduces the speckle noise in an image while preserving the edges of the original image. Returns: Returns TRUE on success. Exception: Throws ImagickException on error. Examples: Imagick::despeckleImage() <?

RecursiveRegexIterator::hasChildren

(PHP 5 >= 5.2.0, PHP 7) Returns whether an iterator can be obtained for the current entry. public bool RecursiveRegexIterator::hasChildren ( void ) Returns whether an iterator can be obtained for the current entry. This iterator can be obtained via RecursiveRegexIterator::getChildren(). Returns: Returns TRUE if an iterator can be obtained for the current entry, otherwise returns FALSE.

sqlite_has_more

(PHP 5 < 5.4.0, PECL sqlite >= 1.0.0) Finds whether or not more rows are available bool sqlite_has_more ( resource $result ) Finds whether more rows are available from the given result set. Parameters: result The SQLite result resource. Returns: Returns TRUE if there are more rows available from the result handle, or FALSE otherwise.