Gmagick::rollimage

(PECL gmagick >= Unknown) Offsets an image public void Gmagick::rollimage ( int $x, int $y ) Offsets an image as defined by x and y. Parameters: x The x offset. y The y offset. Returns: The Gmagick object on success Exception: Throws an GmagickException on error.

runkit_method_redefine

(PECL runkit >= 0.7.0) Dynamically changes the code of the given method bool runkit_method_redefine ( string $classname, string $methodname, string $args, string $code [, int $flags = RUNKIT_ACC_PUBLIC ] ) Note: This function cannot be used to manipulate the currently running (or chained) method. Parameters: classname The class in which to redefine the meth

pg_lo_read

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Read a large object string pg_lo_read ( resource $large_object [, int $len = 8192 ] ) pg_lo_read() reads at most len bytes from a large object and returns it as a string. To use the large object interface, it is necessary to enclose it within a transaction block. Note: This function used to be called pg_loread(). Parameters: large_object

PharFileInfo::getCRC32

(PHP >= 5.3.0, PECL phar >= 1.0.0) Returns CRC32 code or throws an exception if CRC has not been verified public int PharFileInfo::getCRC32 ( void ) This returns the crc32() checksum of the file within the Phar archive. Returns: The crc32() checksum of the file within the Phar archive. Exception: Throws BadMethodCallException if the file has not yet had its

Threaded::count

(PECL pthreads >= 2.0.0) Manipulation public integer Threaded::count ( void ) Returns the number of properties for this object Returns: Examples: Counting the properties of an object <?php $safe = new Threaded(); while (count($safe) < 10) {     $safe[] = count($safe); } var_dump(count($safe)); ?> The above

EventBuffer::unlock

(PECL event >= 1.2.6-beta) Releases lock acquired by EventBuffer::lock public bool EventBuffer::unlock ( void ) Releases lock acquired by EventBuffer::lock() . Returns: Returns TRUE on success. Otherwise FALSE. See also: EventBuffer::lock() -

MessageFormatter::getLocale

(PHP 5 >= 5.3.0, PHP 7, PECL intl >= 1.0.0) Get the locale for which the formatter was created. public string MessageFormatter::getLocale ( void ) Object oriented style Procedural style string msgfmt_get_locale ( NumberFormatter $formatter ) Get the locale for which the formatter was created. Parameters: formatter The formatter resource Retu

ImagickDraw::__construct

(PECL imagick 2.0.0) The ImagickDraw constructor ImagickDraw::__construct ( void ) The ImagickDraw constructor Returns: No value is returned. This function is currently not documented; only its argument list is available.

imap_rfc822_parse_adrlist

(PHP 4, PHP 5, PHP 7) Parses an address string array imap_rfc822_parse_adrlist ( string $address, string $default_host ) Parses the address string as defined in » RFC2822 and for each address. Parameters: address A string containing addresses default_host The default host name Returns: Returns an array of objec

Booleans

Examples: To specify a boolean literal, use the constants TRUE or FALSE. Both are case-insensitive. <?php $foo = True; // assign the value TRUE to $foo ?> Typically, the result of an operator which returns a boolean value is passed on to a control structure. <?php // == is an operator which tests // equality and returns a boolean if ($action == "show_version") {     echo "The version is 1.23"; } // this is not necessary... i