PDOStatement::setFetchMode

(PHP 5 >= 5.1.0, PHP 7, PECL pdo >= 0.2.0) Set the default fetch mode for this statement public bool PDOStatement::setFetchMode ( int $mode ) public bool PDOStatement::setFetchMode ( int $PDO::FETCH_COLUMN , int $colno ) public bool PDOStatement::setFetchMode ( int $PDO::FETCH_CLASS , string $classname , array $ctorargs ) public bool PDOStatement::setFetchMode ( int $PDO::FETCH_INTO , object $object )

RarArchive::open

(PECL rar >= 2.0.0) Open RAR archive public static RarArchive RarArchive::open ( string $filename [, string $password = NULL [, callable $volume_callback = NULL ]] ) Object oriented style (method): Procedural style: RarArchive rar_open ( string $filename [, string $password = NULL [, callable $volume_callback = NULL ]] ) Open specified RAR archive and return RarArchive instance representing it. Note: If opening a m

IntlChar::isdigit

(PHP 7) Check if code point is a digit character public static bool IntlChar::isdigit ( mixed $codepoint ) Determines whether the specified code point is a digit character. TRUE for characters with general category "Nd" (decimal digit numbers). Beginning with Unicode 4, this is the same as testing for the Numeric_Type of Decimal. Parameters: codepoint The integer codepoi

snmp2_get

(PHP 5 >= 5.2.0, PHP 7) Fetch an SNMP object string snmp2_get ( string $host, string $community, string $object_id [, string $timeout = 1000000 [, string $retries = 5 ]] ) The snmp2_get() function is used to read the value of an SNMP object specified by the object_id. Parameters: host The SNMP agent. community The read community.

vprintf

(PHP 4 >= 4.1.0, PHP 5, PHP 7) Output a formatted string int vprintf ( string $format, array $args ) Display array values as a formatted string according to format (which is described in the documentation for sprintf()). Operates as printf() but accepts an array of arguments, rather than a variable number of arguments. Parameters: format See sprintf() for a descripti

gupnp_service_proxy_remove_notify

(PECL gupnp >= 0.1.0) Cancels the variable change notification bool gupnp_service_proxy_remove_notify ( resource $proxy, string $value ) Cancels the variable change notification. Parameters: proxy A service proxy identifier. value The variable to add notification for. Returns: Returns TRUE on success or FALS

mysqli_result::free

(PHP 5, PHP 7) Frees the memory associated with a result void mysqli_result::free ( void ) Object oriented style void mysqli_result::close ( void ) void mysqli_result::free_result ( void ) Procedural style void mysqli_free_result ( mysqli_result $result ) Frees the memory associated with the result. Note: You should always free your result with mysqli_free_result(), when your result object is not needed anymore.

NumberFormatter::getErrorCode

(PHP 5 >= 5.3.0, PHP 7, PECL intl >= 1.0.0) Get formatter's last error code. public int NumberFormatter::getErrorCode ( void ) Object oriented style Procedural style int numfmt_get_error_code ( NumberFormatter $fmt ) Get error code from the last function performed by the formatter. Parameters: fmt NumberFormatter object. Returns: Retur

trader_cdlupsidegap2crows

(PECL trader >= 0.2.0) Upside Gap Two Crows array trader_cdlupsidegap2crows ( array $open, array $high, array $low, array $close ) Parameters: open Opening price, array of real values. high High price, array of real values. low Low price, array of real values. close

GearmanWorker::__construct

(PECL gearman >= 0.5.0) Create a GearmanWorker instance public GearmanWorker::__construct ( void ) Creates a GearmanWorker instance representing a worker that connects to the job server and accepts tasks to run. Returns: A GearmanWorker object See also: GearmanWorker::clone() -