oci_fetch_all

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Fetches multiple rows from a query into a two-dimensional array int oci_fetch_all ( resource $statement, array &$output [, int $skip = 0 [, int $maxrows = -1 [, int $flags = OCI_FETCHSTATEMENT_BY_COLUMN + OCI_ASSOC ]]] ) Fetches multiple rows from a query into a two-dimensional array. By default, all rows are returned. This function can be called only once for each query execute

mb_parse_str

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Parse GET/POST/COOKIE data and set global variable bool mb_parse_str ( string $encoded_string [, array &$result ] ) Parses GET/POST/COOKIE data and sets global variables. Since PHP does not provide raw POST/COOKIE data, it can only be used for GET data for now. It parses URL encoded data, detects encoding, converts coding to internal encoding and set values to the result array or global

oci_fetch_object

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Returns the next row from a query as an object object oci_fetch_object ( resource $statement ) Returns an object containing the next result-set row of a query. Each attribute of the object corresponds to a column of the row. This function is typically called in a loop until it returns FALSE, indicating no more rows exist. For details on the data type mapping performed by the OCI8 extens

fbsql_hostname

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Get or set the host name used with a connection string fbsql_hostname ( resource $link_identifier [, string $host_name ] ) Gets or sets the host name used with a connection. Parameters: link_identifier A FrontBase link identifier returned by fbsql_connect() or fbsql_pconnect(). If optional and not specified, the function will try to find a

date_timestamp_get

(PHP 5 >= 5.3.0, PHP 7) Alias of DateTime::getTimestamp() This function is an alias of: DateTime::getTimestamp()

MongoId::getTimestamp

(PECL mongo >= 1.0.1) Gets the number of seconds since the epoch that this id was created public int MongoId::getTimestamp ( void ) This returns the same thing as running time() when the id is created. Returns: Returns the number of seconds since the epoch that this id was created. There are only four bytes of timestamp stored, so MongoDate is a better choice for storing exact or wide-ranging t

imagetruecolortopalette

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Convert a true color image to a palette image bool imagetruecolortopalette ( resource $image, bool $dither, int $ncolors ) imagetruecolortopalette() converts a truecolor image to a palette image. The code for this function was originally drawn from the Independent JPEG Group library code, which is excellent. The code has been modified to preserve as much alpha channel information as possible

msql_close

(PHP 4, PHP 5, PHP 7) Close mSQL connection bool msql_close ([ resource $link_identifier ] ) msql_close() closes the non-persistent connection to the mSQL server that's associated with the specified link identifier. Using msql_close() isn't usually necessary, as non-persistent open links are automatically closed at the end of the script's execution. See also freeing resources. Parameters:

odbc_field_name

(PHP 4, PHP 5, PHP 7) Get the columnname string odbc_field_name ( resource $result_id, int $field_number ) Gets the name of the field occupying the given column number in the given result identifier. Parameters: result_id The result identifier. field_number The field number. Field numbering starts at 1. Returns:

MongoGridfsFile::__construct

(PECL mongo >=0.9.0) Create a new GridFS file public MongoGridfsFile::__construct ( MongoGridFS $gridfs, array $file ) Parameters: gridfs The parent MongoGridFS instance. file A file from the database. Returns: Returns a new MongoGridFSFile.