PHP array_shift()


array_shift() function , Array में से first element remove करता है। और removed element को ही return करता है।

PHP array_shift Syntax

array_shift( array $array );

Parameters
  1. array $array | required : $array Array variable है , जिसमे से value remove करनी है।

  2. Return Value : removed element को ही return करता है।

    अगर pass किया गया Array empty है तो , null return होगा।


PHP array_shift Example

File : php_array_shift.php

Copy Fullscreen Close Fullscreen
<?php   
  $stack = array("orange", "banana", "apple", "raspberry");
  echo "Removed element : ". array_shift($stack);
  echo "<br>";
  print_r($stack);
?>
Output
Removed element : orange
Array ( [0] => banana [1] => apple [2] => raspberry )

Hey ! I'm Rahul founder of learnhindituts.com. Working in IT industry more than 4.5 years. I love to talk about programming as well as writing technical tutorials and blogs that can help to others .... keep learning :)

Get connected with me - LinkedIn Twitter Instagram Facebook