ZMQDevice::setIdleTimeout

(No version information available, might only be in Git) Set the idle timeout public ZMQDevice ZMQDevice::setIdleTimeout ( integer $timeout ) Sets the idle callback timeout value. The idle callback is invoked periodically when the device is idle. Parameters: timeout The idle callback timeout value. Returns: On success this method returns the curr

Using namespaces: Basics

(PHP 5 >= 5.3.0, PHP 7) Examples: file1.php Here is an example of the three kinds of syntax in actual code: <?php namespace Foo\Bar\subnamespace; const FOO = 1; function foo() {} class foo {     static function staticmethod() {} } ?> file2.php <?php namespace Foo\Bar; include 'file1.php'; const FOO = 2; function foo() {} class foo {     static function staticmethod() 

IntlChar::tolower

(PHP 7) Make Unicode character lowercase public static mixed IntlChar::tolower ( mixed $codepoint ) The given character is mapped to its lowercase equivalent. If the character has no lowercase equivalent, the original character itself is returned. Parameters: codepoint The integer codepoint value (e.g. 0x2603 for U+2603 SNOWMAN), or the character encoded as a UTF-8 string

ReflectionParameter::getDefaultValue

(PHP 5 >= 5.0.3, PHP 7) Gets default parameter value public mixed ReflectionParameter::getDefaultValue ( void ) Gets the default value of the parameter for a user-defined function or method. If the parameter is not optional a ReflectionException will be thrown. Returns: The parameters default value. Notes: Due to implementation details, it

ImagickDraw::pathMoveToAbsolute

(PECL imagick 2.0.0) Starts a new sub-path bool ImagickDraw::pathMoveToAbsolute ( float $x, float $y ) Starts a new sub-path at the given coordinate using absolute coordinates. The current point then becomes the specified coordinate. Parameters: x x coordinate of the starting point y y coordinate of the starting point

date_time_set

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

RecursiveIteratorIterator::beginChildren

(PHP 5 >= 5.1.0, PHP 7) Begin children public void RecursiveIteratorIterator::beginChildren ( void ) Is called after calling RecursiveIteratorIterator::getChildren(), and its associated RecursiveIteratorIterator::rewind(). Returns: No value is returned. This function is currently not documented; only its argument list is available.

runkit_lint_file

(PECL runkit >= 0.7.0) Check the PHP syntax of the specified file bool runkit_lint_file ( string $filename ) The runkit_lint_file() function performs a syntax (lint) check on the specified filename testing for scripting errors. This is similar to using php -l from the commandline. Note: Sandbox support (required for runkit_lint(), runkit_lint_file(), and the Runkit_Sandbox class) is only available as of PHP 5.1.0 or sp

trader_div

(PECL trader >= 0.2.0) Vector Arithmetic Div array trader_div ( array $real0, array $real1 ) Divides each value from real0 by the corresponding value from real1 and returns the resulting array. Parameters: real0 Array of real values. real1 Array of real values. Returns: Returns an array with calculated data o

OAuth::getCAPath

(PECL OAuth >= 0.99.8) Gets CA information public array OAuth::getCAPath ( void ) Gets the Certificate Authority information, which includes the ca_path and ca_info set by OAuth::setCaPath(). Returns: An array of Certificate Authority information, specifically as ca_path and ca_info keys within the returned associative array. This function is currently not d