imagecreatefromgif

(PHP 4, PHP 5, PHP 7) Create a new image from file or URL resource imagecreatefromgif ( string $filename ) imagecreatefromgif() returns an image identifier representing the image obtained from the given filename. TipA URL can be used as a filename with this function if the fopen wrappers have been enabled. See fopen() for more details on how to specify the filename. See the Supported Protocols and Wrappers for links to inf

ZMQSocket::send

(PECL zmq >= 0.5.0) Sends a message public ZMQSocket ZMQSocket::send ( string $message [, integer $mode = 0 ] ) Send a message using the socket. The operation can block unless ZMQ::MODE_NOBLOCK is used. Parameters: message The message to send. mode Pass mode flags to receive multipart messages or non-blocking operation. See ZMQ::MOD

Bitwise Operators

Examples: Bit shifting in PHP is arithmetic. Bits shifted off either end are discarded. Left shifts have zeros shifted in on the right while the sign bit is shifted out on the left, meaning the sign of an operand is not preserved. Right shifts have copies of the sign bit shifted in on the left, meaning the sign of an operand is preserved. Use parentheses to ensure the desired precedence. For example, $a & $b == true evaluates the equivalency then the bitwise and

grapheme_strripos

(PHP 5 >= 5.3.0, PHP 7, PECL intl >= 1.0.0) Find position (in grapheme units) of last occurrence of a case-insensitive string int grapheme_strripos ( string $haystack, string $needle [, int $offset = 0 ] ) Procedural style Find position (in grapheme units) of last occurrence of a case-insensitive string Parameters: haystack The string to look in. Must be valid UTF-

CairoContext::resetClip

(PECL cairo >= 0.1.0) The resetClip purpose public void CairoContext::resetClip ( void ) Object oriented style (method): Procedural style: void cairo_reset_clip ( CairoContext $context ) Description here. Parameters: context Description... Returns: Description... This function is currently not documented;

TokyoTyrant::size

(PECL tokyo_tyrant >= 0.1.0) Returns the size of the value public int TokyoTyrant::size ( string $key ) Returns the size of a value by key Parameters: key The key of which size to fetch Returns: Returns the size of the key or throw TokyoTyrantException on error Examples: TokyoTyran

ArrayIterator::append

(PHP 5 >= 5.0.0, PHP 7) Append an element public void ArrayIterator::append ( mixed $value ) Appends value as the last element. Parameters: value The value to append. Returns: No value is returned. This function is currently not documented; only its argument list is available.

XMLWriter::writeCData

(PHP 5 >= 5.1.2, PHP 7, PECL xmlwriter >= 0.1.0) Write full CDATA tag bool XMLWriter::writeCData ( string $content ) Object oriented style Procedural style bool xmlwriter_write_cdata ( resource $xmlwriter , string $content ) Writes a full CDATA. Parameters: xmlwriter Only for procedural calls. The XMLWriter resource that is being modified. This resource comes from a

MongoTimestamp::__construct

(PECL mongo >= 1.0.1) Creates a new timestamp. public MongoTimestamp::__construct ([ int $sec = time() [, int $inc ]] ) Creates a new timestamp. If no parameters are given, the current time is used and the increment is automatically provided. The increment is set to 0 when the module is loaded and is incremented every time this constructor is called (without the $inc parameter passed in). Parameters:

MongoCollection::setSlaveOkay

(PECL mongo >=1.1.0) Change slaveOkay setting for this collection public bool MongoCollection::setSlaveOkay ([ bool $ok = true ] ) See the query section of this manual for information on distributing reads to secondaries. Parameters: ok If reads should be sent to secondary members of a replica set for all possible queries using this MongoCollection instance.