maxdb_fetch_field

(PECL maxdb >= 1.0) Returns the next field in the result set mixed maxdb_fetch_field ( resource $result ) Procedural style Object oriented style mixed maxdb_result::fetch_field ( void ) The maxdb_fetch_field() returns the definition of one column of a result set as an resource. Call this function repeatedly to retrieve information about all columns in the result set. maxdb_fetch_field() returns FALSE when no more fields

stats_dens_cauchy

(PECL stats >= 1.0.0) Not documented float stats_dens_cauchy ( float $x, float $ave, float $stdev ) Parameters: x ave stdev Returns: This function is currently not documented; only its argument list is available.

posix_get_last_error

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Retrieve the error number set by the last posix function that failed int posix_get_last_error ( void ) Retrieve the error number set by the last posix function that failed. The system error message associated with the errno may be checked with posix_strerror(). Returns: Returns the errno (error number) set by the last posix function that failed. If no errors exist

trader_cdlkicking

(PECL trader >= 0.2.0) Kicking array trader_cdlkicking ( array $open, array $high, array $low, array $close ) Parameters: open Opening price, array of real values. high High price, array of real values. low Low price, array of real values. close Closing price, arra

fann_get_rprop_increase_factor

(PECL fann >= 1.0.0) Returns the increase factor used during RPROP training float fann_get_rprop_increase_factor ( resource $ann ) The increase factor is a value larger than 1, which is used to increase the step-size during RPROP training. The default increase factor is 1.2. Parameters: ann Neural network resource. Returns: The increase factor

EventUtil::getLastSocketError

(PECL event >= 1.2.6-beta) Returns the most recent socket error public static string EventUtil::getLastSocketError ([ mixed $socket ] ) Returns the most recent socket error. Parameters: socket Socket resource, stream or a file descriptor of a socket. Returns: Returns the most recent socket error.

ImagickDraw::rotate

(PECL imagick 2.0.0) Applies the specified rotation to the current coordinate space bool ImagickDraw::rotate ( float $degrees ) Applies the specified rotation to the current coordinate space. Parameters: degrees degrees to rotate Returns: No value is returned. This function is currently not documented; only it

session_set_cookie_params

(PHP 4, PHP 5, PHP 7) Set the session cookie parameters void session_set_cookie_params ( int $lifetime [, string $path [, string $domain [, bool $secure = false [, bool $httponly = false ]]]] ) Set cookie parameters defined in the php.ini file. The effect of this function only lasts for the duration of the script. Thus, you need to call session_set_cookie_params() for every request and before session_start() is called.

IntlChar::isISOControl

(PHP 7) Check if code point is an ISO control code public static bool IntlChar::isISOControl ( mixed $codepoint ) Determines whether the specified code point is an ISO control code. TRUE for U+0000..U+001f and U+007f..U+009f (general category "Cc"). Parameters: codepoint The integer codepoint value (e.g. 0x2603 for U+2603 SNOWMAN), or the character encoded as a UTF-8 str

ReflectionMethod::getDeclaringClass

(PHP 5, PHP 7) Gets declaring class for the reflected method. public ReflectionClass ReflectionMethod::getDeclaringClass ( void ) Gets the declaring class for the reflected method. Returns: A ReflectionClass object of the class that the reflected method is part of. Examples: ReflectionMethod::getDeclaringClass() example &