x
 
<!DOCTYPE html>
<html>
<body>
<?php
$people = array("Bill", "Steve", "Mark", "David");
echo current($people) . "<br>";
echo end($people);
?>
</body>
</html>