❮PHP数组参考
从当前内部指针位置返回元素键:
<?php $people=array("Peter","Joe","Glenn","Cleveland"); echo "The key from the current position is: " . key($people); ?>
key()函数从当前内部指针位置返回元素键。
错误时此函数返回FALSE。
key(array)