mysqli::$info

(PHP 5, PHP 7) Retrieves information about the most recently executed query string mysqli_info ( mysqli $link ) Object oriented style string $mysqli->info; Procedural style The mysqli_info() function returns a string providing information about the last query executed. The nature of this string is provided below: Possible mysqli_info return values Query type Example result string INSERT INTO...SELECT... Records: 100 Dup

dbplus_rquery

(PHP 4 <= 4.1.0, PECL dbplus >= 0.9) Perform local (raw) AQL query resource dbplus_rquery ( string $query [, string $dbpath ] ) dbplus_rquery() performs a local (raw) AQL query using an AQL interpreter embedded into the db++ client library. dbplus_rquery() is faster than dbplus_aql() but will work on local data only. Parameters: query dbplus_rquery() performs a loca

ReflectionClass::hasProperty

(PHP 5 >= 5.1.0, PHP 7) Checks if property is defined public bool ReflectionClass::hasProperty ( string $name ) Checks whether the specified property is defined. Parameters: name Name of the property being checked for. Returns: TRUE if it has the property, otherwise FALSE Examples:

Iterator::rewind

(PHP 5 >= 5.0.0, PHP 7) Rewind the Iterator to the first element abstract public void Iterator::rewind ( void ) Rewinds back to the first element of the Iterator. Note: This is the first method called when starting a foreach loop. It will not be executed after foreach loops. Returns: Any returned value is ignored.

Gmagick::getimageiterations

(PECL gmagick >= Unknown) Gets the image iterations public int Gmagick::getimageiterations ( void ) Gets the image iterations. Returns: Returns the image iterations as an integer. Exception: Throws an GmagickException on error.

fbsql_free_result

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Free result memory bool fbsql_free_result ( resource $result ) Frees all memory associated with the given result identifier. fbsql_free_result() only needs to be called if you are concerned about how much memory is being used for queries that return large result sets. All associated result memory is automatically freed at the end of the script's execution. Parameters:

fbsql_next_result

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Move the internal result pointer to the next result bool fbsql_next_result ( resource $result ) When sending more than one SQL statement to the server or executing a stored procedure with multiple results will cause the server to return multiple result sets. This function will test for additional results available form the server. If an additional result set exists it will free the existing

set_socket_blocking

(PHP 4, PHP 5) Alias of stream_set_blocking() This function is an alias of: stream_set_blocking()

srand

(PHP 4, PHP 5, PHP 7) Seed the random number generator void srand ([ int $seed ] ) Seeds the random number generator with seed or with a random value if no seed is given. Note: There is no need to seed the random number generator with srand() or mt_srand() as this is done automatically. Parameters: seed Optional seed value Returns: No value is

dbplus_getunique

(PHP 4 <= 4.1.0, PECL dbplus >= 0.9) Get an id number unique to a relation int dbplus_getunique ( resource $relation, int $uniqueid ) Obtains a number guaranteed to be unique for the given relation and will pass it back in the variable given as uniqueid. Parameters: relation A relation opened by dbplus_open(). uniqueid A relation