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