If tutorials available on this website are helpful for you, please whitelist this website in your ad blocker😭 or Donate to help us ❤️ pay for the web hosting to keep the website running.
array_shift() function , Array में से first element remove करता है। और removed element को ही return करता है।
array_shift( array $array );
array $array | required : $array Array variable है , जिसमे से value remove करनी है।
Return Value : removed element को ही return करता है।
अगर pass किया गया Array empty है तो , null return होगा।
File : php_array_shift.php
<?php
$stack = array("orange", "banana", "apple", "raspberry");
echo "Removed element : ". array_shift($stack);
echo "<br>";
print_r($stack);
?>
Removed element : orange Array ( [0] => banana [1] => apple [2] => raspberry )