Skip to content

Tag Archives: PHP-function

The SplObjectStorage::getinfo() function is an inbuilt function in PHP that is used to get the data associated with the object by the current iterator position. … Read More
The SplFixedArray::count() function is an inbuilt function in PHP which is used to return the size of the array. Syntax: int SplFixedArray::count() Parameters: This function… Read More
The SplDoublyLinkedList::push() function is an inbuilt function in PHP which is used to push an element at the end of the doubly linked list. Syntax:… Read More
The SplDoublyLinkedList::rewind() function is an inbuilt function in PHP which is used to rewind the iterator back to the start or beginning. Syntax: void SplDoublyLinkedList::rewind(… Read More
The SplDoublyLinkedList::pop() function is an inbuilt function in PHP which is used to pop the node from the end of the doubly linked list.  Syntax:… Read More
The SplDoublyLinkedList::next() function is an inbuilt function in PHP which is used to move the index into next index. Syntax: void SplDoublyLinkedList::next( void ) Parameters:… Read More
The SplDoublyLinkedList::offsetUnset() function is an inbuilt function in PHP which is used to unset the value at given index. Syntax: void SplDoublyLinkedList::offsetUnset( $index ) Parameters:… Read More
The SplDoublyLinkedList::count() function is an inbuilt function in PHP which is used to count the number of elements present in a doubly linked list. Syntax:… Read More
The SplDoublyLinkedList::isEmpty() function is an inbuilt function in PHP which is used to check whether the doubly linked list is empty or not. Syntax: bool… Read More
The SplDoublyLinkedList::offsetSet() function is an inbuilt function in PHP which is used to set the value at given index. Syntax: void SplDoublyLinkedList::offsetSet( $index, $newval )… Read More
The SplDoublyLinkedList::prev() function is an inbuilt function in PHP which is used to move to the previous entry. Syntax: void SplDoublyLinkedList::prev( void ) Parameters: This… Read More
The SplDoublyLinkedList::bottom() function is an inbuilt function in PHP which is used to peek the value of node from the beginning of the doubly linked… Read More
The SplDoublyLinkedList::add() function is an inbuilt function in PHP which is used to add a new value at the given index. Syntax: void SplDoublyLinkedList::add( $index,… Read More
The SplDoublyLinkedList::top() function is an inbuilt function in PHP which is used to return the value of last (top) node in a doubly-linked list. Syntax:… Read More
The SplDoublyLinkedList::current() function is an inbuilt function in PHP which is used to returns the current element of the array. Syntax: mixed SplDoublyLinkedList::current( void )… Read More