Saturday, May 16, 2026
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
32514 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6892 POSTS0 COMMENTS
Nicole Veronica
12012 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12107 POSTS0 COMMENTS
Shaida Kate Naidoo
7016 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6975 POSTS0 COMMENTS
Umr Jansen
6963 POSTS0 COMMENTS