Open In App
Related Articles

PHP | Ds\Stack peek() Function

Improve Article
Improve
Save Article
Save
Like Article
Like

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
 


Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 18 Jan, 2021
Like Article
Save Article
Previous
Next
Similar Reads