Open In App

PHP | Ds\Stack peek() Function

Improve
Improve
Like Article
Like
Save
Share
Report

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
 



Last Updated : 18 Jan, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads