<?php $my_array = array('some' => 100, 'next' => 50); echo reset($my_array); // 100 echo end($my_array); // 50 ?>