從目前內部指標位置返回元素鍵名稱:
<?php$people=array("Peter","Joe","Glenn","Cleveland");echo "The key from the current position is: " . key($people);?>key() 函數從目前內部指標位置傳回元素鍵名。
如果錯誤,函數傳回FALSE。
key( array )
參數 | 描述 |
---|---|
array | 必需。規定要使用的數組。 |
傳回值: | 傳回目前內部指標所指向的陣列元素的鍵名。 |
---|---|
PHP 版本: | 4+ |