end

(PHP 4, PHP 5, PHP 7) Set the internal pointer of an array to its last element mixed end ( array &$array ) end() advances array's internal pointer to the last element, and returns its value. Parameters: array The array. This array is passed by reference because it is modified by the function. This means you must pass it a real variable and not a function returning an

SWFTextField::addString

(PHP 5 <= 5.3.0, PECL ming SVN) Concatenates the given string to the text field void SWFTextField::addString ( string $string ) swftextfield::setname() concatenates the string string to the text field. Returns: No value is returned. This function is EXPERIMENTAL. The behaviour of this function, its name, and surrounding documentation may change without noti

TokyoTyrant::fwmKeys

(PECL tokyo_tyrant >= 0.1.0) Returns the forward matching keys public array TokyoTyrant::fwmKeys ( string $prefix, int $max_recs ) Returns the forward matching keys from the database Parameters: prefix Prefix of the keys max_recs Maximum records to return Returns: Returns an array of matching keys. The value

SplDoublyLinkedList::__construct

(PHP 5 >= 5.3.0, PHP 7) Constructs a new doubly linked list public SplDoublyLinkedList::__construct ( void ) This constructs a new empty doubly linked list. Returns: No value is returned. Examples: SplDoublyLinkedList::__construct() example <?php $dll = new SplDoublyLinkedList(); $dll->push(2); $dll->push(3); $dll->unshift

OAuth::__construct

(PECL OAuth >= 0.99.1) Create a new OAuth object public OAuth::__construct ( string $consumer_key, string $consumer_secret [, string $signature_method = OAUTH_SIG_METHOD_HMACSHA1 [, int $auth_type = 0 ]] ) Creates a new OAuth object Parameters: consumer_key The consumer key provided by the service provider. consumer_secret The cons

DateTimeZone::listIdentifiers

(PHP 5 >= 5.2.0, PHP 7) Returns a numerically indexed array containing all defined timezone identifiers public static array DateTimeZone::listIdentifiers ([ int $what = DateTimeZone::ALL [, string $country = NULL ]] ) Object oriented style Procedural style array timezone_identifiers_list ([ int $what = DateTimeZone::ALL [, string $country = NULL ]] ) Parameters: what

sybase_fetch_assoc

(PHP 4 >= 4.3.0, PHP 5, PHP 7) Fetch a result row as an associative array array sybase_fetch_assoc ( resource $result ) sybase_fetch_assoc() is a version of sybase_fetch_row() that uses column names instead of integers for indices in the result array. Columns from different tables with the same names are returned as name, name1, name2, ..., nameN. An important thing to note is that using sybase_fetch_assoc() is NOT sign

IntlCalendar::getActualMinimum

(PHP 5.5.0, PHP 7, PECL >= 3.0.0a1) The minimum value for a field, considering the objectʼs current time public int IntlCalendar::getActualMinimum ( int $field ) Object oriented style Procedural style int intlcal_get_actual_minimum ( IntlCalendar $cal , int $field ) Returns a fieldʼs relative minimum value around the current time. The exact semantics vary by field, but in the general case this is the value that would

SolrDocument::getInputDocument

(PECL solr >= 0.9.2) Returns a SolrInputDocument equivalent of the object public SolrInputDocument SolrDocument::getInputDocument ( void ) Returns a SolrInputDocument equivalent of the object. This is useful if one wishes to resubmit/update a document retrieved from a query. Returns: Returns a SolrInputDocument on success and NULL on failure.

EventHttpRequest::sendReply

(PECL event >= 1.4.0-beta) Send an HTML reply to the client public void EventHttpRequest::sendReply ( int $code , string $reason [, EventBuffer $buf ] ) Send an HTML reply to the client. The body of the reply consists of data in optional buf parameter. Parameters: code The HTTP response code to send. reason A brief message to send