IntlTimeZone::getCanonicalID

(PHP 5.5.0, PHP 7, PECL >= 3.0.0a1) Get the canonical system timezone ID or the normalized custom time zone ID for the given time zone ID public static string IntlTimeZone::getCanonicalID ( string $zoneId [, bool &$isSystemID ] ) Parameters: zoneId isSystemID Returns: This fu

convert_uuencode

(PHP 5, PHP 7) Uuencode a string string convert_uuencode ( string $data ) convert_uuencode() encodes a string using the uuencode algorithm. Uuencode translates all strings (including binary's ones) into printable characters, making them safe for network transmissions. Uuencoded data is about 35% larger than the original. Parameters: data The data to be encoded.

SplObjectStorage::rewind

(PHP 5 >= 5.1.0, PHP 7) Rewind the iterator to the first storage element public void SplObjectStorage::rewind ( void ) Rewind the iterator to the first storage element. Returns: No value is returned. Examples: SplObjectStorage::rewind() example <?php $s = new SplObjectStorage(); $o1 = new StdClass; $o2 = new StdCl

IntlDateFormatter::setPattern

(PHP 5 >= 5.3.0, PHP 7, PECL intl >= 1.0.0) Set the pattern used for the IntlDateFormatter public bool IntlDateFormatter::setPattern ( string $pattern ) Object oriented style Procedural style bool datefmt_set_pattern ( IntlDateFormatter $fmt , string $pattern ) Set the pattern used for the IntlDateFormatter. Parameters: fmt The formatter resource.

EventHttpRequest::addHeader

(PECL event >= 1.4.0-beta) Adds an HTTP header to the headers of the request public bool EventHttpRequest::addHeader ( string $key , string $value , int $type ) Adds an HTTP header to the headers of the request. Parameters: key Header name. value Header value. type One of EventHttpRequest::*_HEAD

RegexIterator::__construct

(PHP 5 >= 5.2.0, PHP 7) Create a new RegexIterator public RegexIterator::__construct ( Iterator $iterator , string $regex [, int $mode = self::MATCH [, int $flags = 0 [, int $preg_flags = 0 ]]] ) Create a new RegexIterator which filters an Iterator using a regular expression. Parameters: iterator The iterator to apply this regex filter to. regex The

$argc

(PHP 4, PHP 5, PHP 7) The number of arguments passed to script Contains the number of arguments passed to the current script when running from the command line. Note: The script's filename is always passed as an argument to the script, therefore the minimum value of $argc is 1. Note: This variable is not available when register_argc_argv is disabled. Examples: $arg

memory_get_peak_usage

(PHP 5 >= 5.2.0, PHP 7) Returns the peak of memory allocated by PHP int memory_get_peak_usage ([ bool $real_usage = false ] ) Returns the peak of memory, in bytes, that's been allocated to your PHP script. Parameters: real_usage Set this to TRUE to get the real size of memory allocated from system. If not set or FALSE only the memory used by emalloc() is reported.

imap_alerts

(PHP 4, PHP 5, PHP 7) Returns all IMAP alert messages that have occurred array imap_alerts ( void ) Returns all of the IMAP alert messages generated since the last imap_alerts() call, or the beginning of the page. When imap_alerts() is called, the alert stack is subsequently cleared. The IMAP specification requires that these messages be passed to the user. Returns: Returns an array of all of th

CairoContext::setLineWidth

(PECL cairo >= 0.1.0) The setLineWidth purpose public void CairoContext::setLineWidth ( string $width ) Object oriented style (method): Procedural style: void cairo_set_line_width ( CairoContext $context , string $width ) Description here. Parameters: context Description... width Description... Returns: De