Phar::__construct

(PHP >= 5.3.0, PECL phar >= 1.0.0) Construct a Phar archive object public Phar::__construct ( string $fname [, int $flags [, string $alias ]] ) Parameters: fname Path to an existing Phar archive or to-be-created archive. The file name's extension must contain .phar. flags Flags to pass to parent class RecursiveDirectoryIterator.

db2_autocommit

(PECL ibm_db2 >= 1.0.0) Returns or sets the AUTOCOMMIT state for a database connection mixed db2_autocommit ( resource $connection [, bool $value ] ) Sets or gets the AUTOCOMMIT behavior of the specified connection resource. Parameters: connection A valid database connection resource variable as returned from db2_connect() or db2_pconnect(). va

gmp_gcdext

(PHP 4 >= 4.0.4, PHP 5, PHP 7) Calculate GCD and multipliers array gmp_gcdext ( GMP $a, GMP $b ) Calculates g, s, and t, such that a*s + b*t = g = gcd(a,b), where gcd is the greatest common divisor. Returns an array with respective elements g, s and t. This function can be used to solve linear Diophantine equations in two variables. These are equations that allow only integer solutions and have the form: a*x + b*y = c.

eio_nreqs

(PECL eio >= 0.0.1dev) Returns number of requests to be processed int eio_nreqs ( void ) eio_nreqs() could be called in a custom loop calling eio_poll(). Returns: eio_nreqs() returns number of requests to be processed. Examples: eio_nreqs() example <?php function res_cb($data, $result) {     var_dump($data);     var

GmagickDraw::arc

(PECL gmagick >= Unknown) Draws an arc public GmagickDraw GmagickDraw::arc ( float $sx, float $sy, float $ex, float $ey, float $sd, float $ed ) Draws an arc falling within a specified bounding rectangle on the image. Parameters: sx starting x ordinate of bounding rectangle sy starting y ordinate of bounding rectangle

DateTimeImmutable::modify

(PHP 5 >= 5.5.0, PHP 7) Creates a new object with modified timestamp public DateTimeImmutable DateTimeImmutable::modify ( string $modify ) Creates a new DateTimeImmutable object with modified timestamp. The original object is not modified. Parameters: object Procedural style only: A DateTime object returned by date_create(). The function modifies this object.

EventBufferEvent::setPriority

(PECL event >= 1.2.6-beta) Assign a priority to a bufferevent public bool EventBufferEvent::setPriority ( int $priority ) Assign a priority to a bufferevent Parameters: priority Priority value. Returns: Returns TRUE on success. Otherwise FALSE. Only supported for socket buffer events

ncurses_assume_default_colors

(PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Define default colors for color 0 int ncurses_assume_default_colors ( int $fg, int $bg ) Parameters: fg bg This function is EXPERIMENTAL. The behaviour of this function, its name, and surrounding documentation may change without notic

JsonSerializable::jsonSerialize

(PHP 5 >= 5.4.0, PHP 7) Specify data which should be serialized to JSON abstract public mixed JsonSerializable::jsonSerialize ( void ) Serializes the object to a value that can be serialized natively by json_encode(). Returns: Returns data which can be serialized by json_encode(), which is a value of any type other than a resource. Examples:

GearmanClient::clone

(PECL gearman >= 0.5.0) Create a copy of a GearmanClient object public GearmanClient GearmanClient::clone ( void ) Creates a copy of a GearmanClient object. Returns: A GearmanClient on success, FALSE on failure.