How to use array pop in PHP

In this article, I will explain how the array_pop() function can be used in PHP.
  • 1442

array_pop() function in PHP

  • The array_pop() function is used to deletes the last element of an array.

  • In array_pop() function, if array is empty, Null will be returned.

  • The array_pop() function return the last value of array.

Syntax

array_pop(array)

Parameter

  • array  array is required parameter. Specifies an array.

Example

The following example show to how the array_pop() function can be used in PHP.

<html>

<html>

<body>

<h3 style="color: yellowgreen;">array_pop() function example in PHP</h3>  

    <?php

    $a1=array("Student".'<br/>',"Teacher".'<br/>',"Engg.".'<br/>');

    print_r($a1);

    echo("<br/>pop value<br/>");

    print_r(array_pop($a1));

    ?> 

</body>

</html>

 

Output

pop.jpg

You may also want to read these related articles here
 
Ask Your Question 
 
Got a programming related question? You may want to post your question here
 

Categories

More Articles

© 2020 DotNetHeaven. All rights reserved.