time_sleep_until

(PHP 5 >= 5.1.0, PHP 7) Make the script sleep until the specified time bool time_sleep_until ( float $timestamp ) Makes the script sleep until the specified timestamp. Parameters: timestamp The timestamp when the script should wake. Returns: Returns TRUE on success or FALSE on failure. Exception: If the spec

geoip_asnum_by_name

(PECL geoip >= 1.1.0) Get the Autonomous System Numbers (ASN) string geoip_asnum_by_name ( string $hostname ) The geoip_asnum_by_name() function will return the Autonomous System Numbers (ASN) associated with an IP address. Parameters: hostname The hostname or IP address. Returns: Returns the ASN on success, or FALSE if the address cannot be f

snmpgetnext

(PHP 5, PHP 7) Fetch the SNMP object which follows the given object id string snmpgetnext ( string $host, string $community, string $object_id [, int $timeout = 1000000 [, int $retries = 5 ]] ) The snmpgetnext() function is used to read the value of the SNMP object that follows the specified object_id. Parameters: host The hostname of the SNMP agent (server).

trader_ema

(PECL trader >= 0.2.0) Exponential Moving Average array trader_ema ( array $real [, integer $timePeriod ] ) Parameters: real Array of real values. timePeriod Number of period. Valid range from 2 to 100000. Returns: Returns an array with calculated data or false on failure.

Imagick::functionImage

(No version information available, might only be in Git) Applies a function on the image public bool Imagick::functionImage ( int $function, array $arguments [, int $channel = Imagick::CHANNEL_DEFAULT ] ) Applies an arithmetic, relational, or logical expression to a pseudo image. See also » ImageMagick v6 Examples - Image Transformations — Function, Multi-Argument Evaluate This method is available if Imagick has been co

mb_strcut

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Get part of string string mb_strcut ( string $str, int $start [, int $length = NULL [, string $encoding = mb_internal_encoding() ]] ) mb_strcut() extracts a substring from a string similarly to mb_substr(), but operates on bytes instead of characters. If the cut position happens to be between two bytes of a multi-byte character, the cut is performed starting from the first byte of that cha

AppendIterator::append

(PHP 5 >= 5.1.0, PHP 7) Appends an iterator public void AppendIterator::append ( Iterator $iterator ) Appends an iterator. Parameters: iterator The iterator to append. Returns: No value is returned. Examples: AppendIterator::append() example <?php $array_a = new A

SDO_DAS_ChangeSummary::endLogging

(^) End change logging void SDO_DAS_ChangeSummary::endLogging ( void ) End logging changes made to an SDO_DataObject. Returns: None. This function is EXPERIMENTAL. The behaviour of this function, its name, and surrounding documentation may change without notice in a future release of PHP. This function should be used at your own risk.

IntlDateFormatter::getTimeType

(PHP 5 >= 5.3.0, PHP 7, PECL intl >= 1.0.0) Get the timetype used for the IntlDateFormatter public int IntlDateFormatter::getTimeType ( void ) Object oriented style Procedural style int datefmt_get_timetype ( IntlDateFormatter $fmt ) Return time type used by the formatter. Parameters: fmt The formatter resource. Returns: The current da

GearmanTask::dataSize

(PECL gearman >= 0.5.0) Get the size of returned data public int GearmanTask::dataSize ( void ) Returns the size of the data being returned for a task. Returns: The data size, or FALSE if there is no data. See also: GearmanTask::data() -