oci_client_version

(PHP 5.3.7, PHP 7, PECL OCI8 >= 1.4.6) Returns the Oracle client library version string oci_client_version ( void ) Returns a string containing the version number of the Oracle C client library that PHP is linked with. Returns: Returns the version number as a string. Notes: Oracle libraries before 10gR2 do not have the underlying functional

PDOStatement::errorCode

(PHP 5 >= 5.1.0, PHP 7, PECL pdo >= 0.1.0) Fetch the SQLSTATE associated with the last operation on the statement handle public string PDOStatement::errorCode ( void ) Returns: Identical to PDO::errorCode(), except that PDOStatement::errorCode() only retrieves error codes for operations performed with PDOStatement objects. Examples:

ingres_execute

(PECL ingres >= 1.1.0) Execute a prepared query bool ingres_execute ( resource $result [, array $params [, string $types ]] ) Execute a query prepared using ingres_prepare(). Note: Related Configurations See also the ingres.describe, ingres.scrollable and ingres.utf8 directives in Runtime Configuration. Parameters: result The result query identifier

while

(PHP 4, PHP 5, PHP 7) Examples: while loops are the simplest type of loop in PHP. They behave just like their C counterparts. The basic form of a while statement is: while (expr) statement The meaning of a while statement is simple. It tells PHP to execute the nested statement(s) repeatedly, as long as the while expression evaluates to TRUE. The value of

IntlBreakIterator::createWordInstance

(No version information available, might only be in Git) Create break iterator for word breaks public static ReturnType IntlBreakIterator::createWordInstance ([ string $"locale" ] ) Parameters: "locale" Returns: This function is currently not documented; only its argument list is available.

mcrypt_ofb

(PHP 4, PHP 5) Encrypts/decrypts data in OFB mode string mcrypt_ofb ( int $cipher, string $key, string $data, int $mode, string $iv ) string mcrypt_ofb ( string $cipher , string $key , string $data , int $mode [, string $iv ] ) The first prototype is when linked against libmcrypt 2.2.x, the second when linked against libmcrypt 2.4.x or higher. The mode should be either MCRYPT_ENCRYPT or MCRYPT_DECRYPT.

wincache_ucache_exists

(PECL wincache >= 1.1.0) Checks if a variable exists in the user cache bool wincache_ucache_exists ( string $key ) Checks if a variable with the key exists in the user cache or not. Parameters: key The key that was used to store the variable in the cache. key is case sensitive. Returns: Returns TRUE if variable with the key exitsts, otherwis

pg_field_type

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Returns the type name for the corresponding field number string pg_field_type ( resource $result, int $field_number ) pg_field_type() returns a string containing the base type name of the given field_number in the given PostgreSQL result resource. Note: If the field uses a PostgreSQL domain (rather than a basic type), it is the name of the domain's underlying type that is returned, rat

snmp_get_valueretrieval

(PHP 4 >= 4.3.3, PHP 5, PHP 7) Return the method how the SNMP values will be returned int snmp_get_valueretrieval ( void ) Returns: OR-ed combitantion of constants ( SNMP_VALUE_LIBRARY or SNMP_VALUE_PLAIN ) with possible SNMP_VALUE_OBJECT set. Examples: Using snmp_get_valueretrieval <?php  $ret = snmpget('localhost'

snmpwalkoid

(PHP 4, PHP 5, PHP 7) Query for a tree of information about a network entity array snmpwalkoid ( string $hostname, string $community, string $object_id [, int $timeout = 1000000 [, int $retries = 5 ]] ) snmpwalkoid() function is used to read all object ids and their respective values from an SNMP agent specified by hostname. The existence of snmpwalkoid() and snmpwalk() has historical reasons. Both functions are provide