Home Tutorial Php Phparray PHP Array Pop

 
 

PHP Array Pop
Posted on: October 29, 2009 at 12:00 AM
This section demonstrates the use of the array_pop function in the PHP

  • last element of the array is popped by the PHP array_pop() function.
  • array_pop() function in PHP makes the given array with one element lesser
  • It pops up (deletes) the last element  and return it.


PHP Array POP Example
  • <?php
        $arr2
    =array(22,33,44,55,10,80,8);
        echo
    "array values are<br>";

        foreach
    ($arr2 as $a)
          echo
    " ".$a;
        $pop
    =array_pop($arr2);

        echo"<br>pop out element is ".$pop;
        echo
    "<br>array values after popping are <br>";
        foreach
    ($arr2 as $a)
          echo
    " ".$a;
    ?>

              Output
        array values are
        22 33 44 55 10 80 8
        pop out element is 8
        array values after popping are
        22 33 44 55 10 80

Related Tags for PHP Array Pop :


Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.