x
 
<!DOCTYPE html>
<html>
<body>
<?php
$people = array("Bill", "Steve", "Mark", "David");
echo "键的当前位置是:" . key($people);
?>
</body>
</html>