dbplus_info

(PHP 4 <= 4.1.0, PECL dbplus >= 0.9) Get information about a relation int dbplus_info ( resource $relation, string $key, array &$result ) Parameters: relation A relation opened by dbplus_open(). key A relation opened by dbplus_open(). result A relation opened by dbplus_open().

expm1

(PHP 4 >= 4.1.0, PHP 5, PHP 7) Returns exp(number) - 1, computed in a way that is accurate even when the value of number is close to zero float expm1 ( float $arg ) expm1() returns the equivalent to 'exp(arg) - 1' computed in a way that is accurate even if the value of arg is near zero, a case where 'exp (arg) - 1' would be inaccurate due to subtraction of two numbers that are nearly equal. Parameters:

$_GET

(PHP 4 >= 4.1.0, PHP 5, PHP 7) HTTP GET variables An associative array of variables passed to the current script via the URL parameters. $HTTP_GET_VARS contains the same initial information, but is not a superglobal. (Note that $HTTP_GET_VARS and $_GET are different variables and that PHP handles them as such) Changelog: 4.1.0 Introduced $_GET that deprecated $HTTP_GET_VA

ibase_execute

(PHP 5, PHP 7) Execute a previously prepared query resource ibase_execute ( resource $query [, mixed $bind_arg [, mixed $... ]] ) Execute a query prepared by ibase_prepare(). This is a lot more effective than using ibase_query() if you are repeating a same kind of query several times with only some parameters changing. Parameters: query An InterBase query prepared by ib

streamWrapper::dir_opendir

(PHP 4 >= 4.3.2, PHP 5, PHP 7) Open directory handle public bool streamWrapper::dir_opendir ( string $path, int $options ) This method is called in response to opendir(). Parameters: path Specifies the URL that was passed to opendir(). Note: The URL can be broken apart with parse_url(). options Whether or not to enforce safe_mod

socket_getsockname

(PHP 4 >= 4.1.0, PHP 5, PHP 7) Queries the local side of the given socket which may either result in host/port or in a Unix filesystem path, dependent on its type bool socket_getsockname ( resource $socket, string &$addr [, int &$port ] ) Note: socket_getsockname() should not be used with AF_UNIX sockets created with socket_connect(). Only sockets created with socket_accept() or a primary server socket foll

mysqli_client_encoding

(PHP 5 < 5.4.0) Alias of mysqli_character_set_name() This function is an alias of mysqli_character_set_name(). This function has been DEPRECATED as of PHP 5.3.0 and REMOVED as of PHP 5.4.0. See also: mysqli_real_escape_string() -

dbplus_tremove

(PHP 4 <= 4.1.0, PECL dbplus >= 0.9) Remove tuple and return new current tuple int dbplus_tremove ( resource $relation, array $tuple [, array &$current ] ) dbplus_tremove() removes tuple from relation if it perfectly matches a tuple within the relation. current, if given, will contain the data of the new current tuple after calling dbplus_tremove(). Parameters: relation

getmxrr

(PHP 4, PHP 5, PHP 7) Get MX records corresponding to a given Internet host name bool getmxrr ( string $hostname, array &$mxhosts [, array &$weight ] ) Searches DNS for MX records corresponding to hostname. Parameters: hostname The Internet host name. mxhosts A list of the MX records found is placed into the array mxhosts.

ibase_name_result

(PHP 5, PHP 7) Assigns a name to a result set bool ibase_name_result ( resource $result, string $name ) This function assigns a name to a result set. This name can be used later in UPDATE|DELETE ... WHERE CURRENT OF name statements. Parameters: result An InterBase result set. name The name to be assigned. Returns: