how to get fisrt element of array code example
Example 1: first item in array php
$firstItem = array_shift($array);
Example 2: javascript get first element of array
alert($(ary).first());
$firstItem = array_shift($array);
alert($(ary).first());