Friday, October 24, 2025
HomeLanguagesPHP | DsStack peek() Function

PHP | Ds\Stack peek() Function

The Ds\Stack::peek() function of PHP is used to get the element present at the top of the Stack instance. This function just returns the top element of the stack without removing it from the stack.

Syntax:  

mixed public Ds\Stack::peek ( void ) 

Parameters: This function does not accept any parameters.
Return Value: This function returns the element present at the top of the Stack.

Below programs illustrate the Ds\Stack::peek() function in PHP:

Program 1:  

PHP




<?php
 
// PHP program to illustrate the
// Ds\stack::peek() function
 
// Create a Stack instance
$stack = new \Ds\Stack();
 
// Pushing elements to Stack
$stack->push("Welcome");
$stack->push("to");
$stack->push("GfG");
 
// Print the top element
print_r($stack->peek());
 
?>


Output: 

GfG

Program 2: 

PHP




<?php
 
// PHP program to illustrate the
// Ds\stack::peek() function
 
// Create a Stack instance
$stack = new \Ds\Stack();
 
// Pushing Mixed value elements to Stack
$stack->push("Welcome");
$stack->push("to");
$stack->push("GfG");
$stack->push(10);
$stack->push(5.5);
 
// Print the top element
print_r($stack->peek());
 
?>


Output: 

5.5

Reference: http://php.net/manual/en/ds-stack.peek.php
 

RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS