maxdb_options

(PECL maxdb >= 1.0) Set options bool maxdb_options ( resource $link, int $option, mixed $value ) Procedural style Object oriented style bool maxdb::options ( int $option , mixed $value ) maxdb_options() can be used to set extra connect options and affect behavior for a connection. This function may be called multiple times to set several options. maxdb_options() should be called after maxdb_init() and before maxdb_re

copy

(PHP 4, PHP 5, PHP 7) Copies file bool copy ( string $source, string $dest [, resource $context ] ) Makes a copy of the file source to dest. If you wish to move a file, use the rename() function. Parameters: source Path to the source file. dest The destination path. If dest is a URL, the copy operation may fail if the wrapper does not

jdtojulian

(PHP 4, PHP 5, PHP 7) Converts a Julian Day Count to a Julian Calendar Date string jdtojulian ( int $julianday ) Converts Julian Day Count to a string containing the Julian Calendar Date in the format of "month/day/year". Parameters: julianday A julian day number as integer Returns: The julian date as a string in the form "month/day/year"

fbsql_fetch_field

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Get column information from a result and return as an object object fbsql_fetch_field ( resource $result [, int $field_offset ] ) Used in order to obtain information about fields in a certain query result. Parameters: result A result identifier returned by fbsql_query() or fbsql_db_query(). field_offset T

SplFileInfo::getCTime

(PHP 5 >= 5.1.2, PHP 7) Gets the inode change time public int SplFileInfo::getCTime ( void ) Returns the inode change time for the file. The time returned is a Unix timestamp. Returns: The last change time, in a Unix timestamp. Exception: Throws RunTimeException on error. Examples: SplFileInfo::getCTime() example

OCI-Lob::eof

(PHP 5, PHP 7, PECL OCI8 >= 1.1.0) Tests for end-of-file on a large object's descriptor bool OCI-Lob::eof ( void ) Tells whether the internal pointer of large object is at the end of LOB. Returns: Returns TRUE if internal pointer of large object is at the end of LOB. Otherwise returns FALSE. Notes: This function will return an Oracle error

socket_import_stream

(PHP 5 >= 5.4.0, PHP 7) Import a stream resource socket_import_stream ( resource $stream ) Imports a stream that encapsulates a socket into a socket extension resource. Parameters: stream The stream resource to import. Returns: Returns FALSE or NULL on failure. Examples: socket_imp

session_status

(PHP >=5.4.0) Returns the current session status int session_status ( void ) session_status() is used to return the current session status. Returns: PHP_SESSION_DISABLED if sessions are disabled. PHP_SESSION_NONE if sessions are enabled, but none exists. PHP_SESSION_ACTIVE if sessions are enabled, and one exists. See also: session_start() -

mysqli_stmt::$error

(PHP 5, PHP 7) Returns a string description for last statement error string mysqli_stmt_error ( mysqli_stmt $stmt ) Object oriented style string $mysqli_stmt->error; Procedural style Returns a string containing the error message for the most recently invoked statement function that can succeed or fail. Parameters: stmt Procedural style only: A statement identifier retu

gnupg_setarmor

(PECL gnupg >= 0.1) Toggle armored output bool gnupg_setarmor ( resource $identifier, int $armor ) Toggle the armored output. Parameters: identifier The gnupg identifier, from a call to gnupg_init() or gnupg. armor Pass a non-zero integer-value to this function to enable armored-output (default). Pass 0 to disable armored output.