Remove First Element from Array using PHP October 7, 2020 PHP 0 Comments 665 Views array_shift function <?php $data = [10, 3, 17, 50, 15]; array_shift($data); print_r($data);
Leave a Comment
Cancel reply