ifx_do

(PHP 4, PHP <=5.2.0) Execute a previously prepared SQL-statement bool ifx_do ( resource $result_id ) Executes a previously prepared query or opens a cursor for it. Does NOT free result_id on error. Also sets the real number of ifx_affected_rows() for non-select statements for retrieval by ifx_affected_rows(). Parameters: result_id result_id is a valid resultid retu

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

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:

ResourceBundle::getErrorMessage

(PHP >= 5.3.2, PECL intl >= 2.0.0) Get bundle's last error message. public string ResourceBundle::getErrorMessage ( void ) Object oriented style Procedural style string resourcebundle_get_error_message ( ResourceBundle $r ) Get error message from the last function performed by the bundle object. Parameters: r ResourceBundle object. Returns:

maxdb_insert_id

(PECL maxdb >= 1.0) Returns the auto generated id used in the last query mixed maxdb_insert_id ( resource $link ) Procedural style Object oriented style mixed $maxdb->insert_id; The maxdb_insert_id() function returns the ID generated by a query on a table with a column having the DEFAULT SERIAL attribute. If the last query wasn't an INSERT or UPDATE statement or if the modified table does not have a column with the DE