Skip to content
Related Articles
Open in App
Not now

Related Articles

PHP | Ds\Stack peek() Function

Improve Article
Save Article
Like Article
  • Last Updated : 18 Jan, 2021
Improve Article
Save Article
Like Article

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
 


My Personal Notes arrow_drop_up
Like Article
Save Article
Related Articles

Start Your Coding Journey Now!