PHP key() 函數(shù)
PHP key() 函數(shù)
實例
從當(dāng)前內(nèi)部指針位置返回元素鍵名:
$people=array("Peter","Joe","Glenn","Cleveland");
echo "The key from the current position is: " . key($people);
?>
echo "The key from the current position is: " . key($people);
?>
運行結(jié)果:
The key from the current position is: 0
定義和用法
key() 函數(shù)從當(dāng)前內(nèi)部指針位置返回元素鍵名。
如果錯誤,函數(shù)返回 FALSE。
語法
key(array)
參數(shù) | 描述 |
---|---|
array | 必需。規(guī)定要使用的數(shù)組。 |
技術(shù)細(xì)節(jié)
返回值: | 返回當(dāng)前內(nèi)部指針?biāo)赶虻臄?shù)組元素的鍵名。 |
---|---|
PHP 版本: | 4+ |

相關(guān)文章
- PHP 語法
- PHP 錯誤處理
- PHP 高級過濾器
- PHP key() 函數(shù)
- PHP natcasesort() 函數(shù)
- PHP localtime() 函數(shù)
- PHP clearstatcache() 函數(shù)
- PHP ftp_close() 函數(shù)
- PHP log1p() 函數(shù)
- PHP connection_aborted() 函數(shù)
- PHP mysqli_get_server_version() 函數(shù)
- PHP mysqli_real_escape_string() 函數(shù)
- PHP PDO 大對象 (LOBs)
- PHP registerXPathNamespace() 函數(shù)
- PHP simplexml_load_file() 函數(shù)
- PHP nl_langinfo() 函數(shù)
- PHP strtr() 函數(shù)
- PHP vfprintf() 函數(shù)
- PHP wordwrap() 函數(shù)
- PHP imagecolorallocate – 為一幅圖像分配顏色