Open In App

PHP next() Function

The next() function is an inbuilt function in PHP and does the following operations:

Syntax:



next($array)

Parameter: It accepts only one parameter $array. This parameter is mandatory. It is the array in which we need to find the next element.

Return Value: The function returns the value of the next element in an array of which the internal pointer is currently pointing to. It returns FALSE if there is no element at next. Initially the next() function returns the second inserted element.



Examples:

Input : array = [1, 2, 3, 4] 
Output : 2 

Input : array = [1, 2, 3, 4], next() function executed two times      
Output : 2
         3 

Below programs illustrate the next() function in PHP:

Program 1:




<?php
// PHP Program to demonstrate the
// first position of next() function 
  
$array = array("geeks", "Raj", "striver",
                         "coding", "RAj");
  
echo next($array);
  
?>

Output:

Raj

Program 2:




<?php
// PHP Program to demonstrate the 
// working of next() function 
  
$array = array("geeks", "Raj", "striver", "coding", "RAj");
  
// prints the initial current element (geeks)  
echo current($array), "\n"
  
// prints the initial next element (Raj)
// moves the pointer forward
echo next($array), "\n";  
  
// prints the  current element (Raj)  
echo current($array), "\n";  
  
// prints the  next element (striver)
// moves the pointer forward
echo next($array), "\n";  
  
// prints the  current element (striver)  
echo current($array), "\n";  
  
// prints the  next element (coding)
// moves the pointer forward
echo next($array), "\n";  
  
// prints the  current element (coding)  
echo current($array), "\n"
?>

Output:

geeks
Raj
Raj
striver
striver
coding
coding

Reference:
http://php.net/manual/en/function.next.php


Article Tags :