SplDoublyLinkedList::isEmpty

(PHP 5 >= 5.3.0, PHP 7) Checks whether the doubly linked list is empty. public bool SplDoublyLinkedList::isEmpty ( void ) Returns: Returns whether the doubly linked list is empty.

SplDoublyLinkedList::getIteratorMode

(PHP 5 >= 5.3.0, PHP 7) Returns the mode of iteration public int SplDoublyLinkedList::getIteratorMode ( void ) Returns: Returns the different modes and flags that affect the iteration.

SplDoublyLinkedList::current

(PHP 5 >= 5.3.0, PHP 7) Return current array entry public mixed SplDoublyLinkedList::current ( void ) Get the current doubly linked list node. Returns: The current node value.

SplDoublyLinkedList::count

(PHP 5 >= 5.3.0, PHP 7) Counts the number of elements in the doubly linked list. public int SplDoublyLinkedList::count ( void ) Returns: Returns the number of elements in the doubly linked list.

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

SplDoublyLinkedList::bottom

(PHP 5 >= 5.3.0, PHP 7) Peeks at the node from the beginning of the doubly linked list public mixed SplDoublyLinkedList::bottom ( void ) Returns: The value of the first node. Exception: Throws RuntimeException when the data-structure is empty.

SplDoublyLinkedList::add

(PHP 5 >= 5.5.0, PHP 7) Add/insert a new value at the specified index public void SplDoublyLinkedList::add ( mixed $index, mixed $newval ) Insert the value newval at the specified index, shuffling the previous value at that index (and all subsequent values) up through the list. Parameters: index The index where the new value is to be inserted. n

mysqli_slave_query

(PHP 5 < 5.3.0) Force execution of a query on a slave in a master/slave setup bool mysqli_slave_query ( mysqli $link, string $query ) This function is currently not documented; only its argument list is available. This function has been DEPRECATED and REMOVED as of PHP 5.3.0.

mysqli::set_opt

(PHP 5, PHP 7) Alias of mysqli_options() This function is an alias of mysqli_options().

mysqli_send_long_data

(PHP 5 < 5.4.0) Alias for mysqli_stmt_send_long_data() This function is an alias of mysqli_stmt_send_long_data(). This function has been DEPRECATED as of PHP 5.3.0 and REMOVED as of PHP 5.4.0. See also: mysqli_stmt_send_long_data() -