Main.php
Download
<?php $emp_arr=array("John","Tom","Mathew"); unset($emp_arr[0]); print_r($emp_arr); ?>
Array ( [1] => Tom [2] => Mathew )