Yar_Concurrent_Client::reset

(No version information available, might only be in Git) Clean all registered calls public static boolean Yar_Concurrent_Client::reset ( void ) Clean all registered calls Returns: Examples: Yar_Concurrent_Client::reset() example The above example will output something similar to: See

EventBufferEvent::getOutput

(PECL event >= 1.2.6-beta) Returns underlying output buffer associated with current buffer event public EventBuffer EventBufferEvent::getOutput ( void ) Returns underlying output buffer associated with current buffer event. An output buffer is a storage for data to be written. Note, there is also output property of EventBufferEvent class. Returns: Returns instance of EventBuffer output buff

filter_list

(PHP 5 >= 5.2.0, PHP 7) Returns a list of all supported filters array filter_list ( void ) Returns: Returns an array of names of all supported filters, empty array if there are no such filters. Indexes of this array are not filter IDs, they can be obtained with filter_id() from a name instead. Examples: A filter_list() example

IntlChar::isUAlphabetic

(PHP 7) Check if code point has the Alphabetic Unicode property public static bool IntlChar::isUAlphabetic ( mixed $codepoint ) Check if a code point has the Alphabetic Unicode property. This is the same as IntlChar::hasBinaryProperty($codepoint, IntlChar::PROPERTY_ALPHABETIC) Parameters: codepoint The integer codepoint value (e.g. 0x2603 for U+2603 SNOWMAN), or the char

ReflectionExtension::getConstants

(PHP 5, PHP 7) Gets constants public array ReflectionExtension::getConstants ( void ) Get defined constants from an extension. Returns: An associative array with constant names as keys. Examples: ReflectionExtension::getConstants() example <?php $ext = new ReflectionExtension('DOM'); print_r($ext->getConstants());

dbplus_rcreate

(PHP 4 <= 4.1.0, PECL dbplus >= 0.9) Creates a new DB++ relation resource dbplus_rcreate ( string $name, mixed $domlist [, bool $overwrite ] ) Creates a new relation. Any existing relation sharing the same name will be overwritten if the relation is currently not in use and overwrite is set to TRUE. Parameters: name Creates a new relation. Any existing relation shar

setproctitle

(PECL proctitle >= 0.1.0) Set the process title void setproctitle ( string $title ) Sets the process title of the current process. Parameters: title The title to use as the process title. Returns: No value is returned. Examples: setproctitle() example Running the exam

zip_entry_close

(PHP 4 >= 4.1.0, PHP 5 >= 5.2.0, PHP 7, PECL zip >= 1.0.0) Close a directory entry bool zip_entry_close ( resource $zip_entry ) Closes the specified directory entry. Parameters: zip_entry A directory entry previously opened zip_entry_open(). Returns: Returns TRUE on success or FALSE on failure.

array_diff_key

(PHP 5 >= 5.1.0, PHP 7) Computes the difference of arrays using keys for comparison array array_diff_key ( array $array1, array $array2 [, array $... ] ) Compares the keys from array1 against the keys from array2 and returns the difference. This function is like array_diff() except the comparison is done on the keys instead of the values. Parameters: array1 The array t

fmod

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Returns the floating point remainder (modulo) of the division of the arguments float fmod ( float $x, float $y ) Returns the floating point remainder of dividing the dividend (x) by the divisor (y). The remainder (r) is defined as: x = i * y + r, for some integer i. If y is non-zero, r has the same sign as x and a magnitude less than the magnitude of y. Parameters: