當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP ArrayIterator key()用法及代碼示例


ArrayIterator::key()函數是PHP中的一個內置函數,它返回數組元素的當前鍵。

用法:

mixed ArrayIterator::key( void )

參數:該函數不接受任何參數。


返回值:此函數返回當前的數組鍵。

以下示例程序旨在說明PHP中的ArrayIterator::key()函數:

示例1:

<?php 
   
// Declare an ArrayIterator 
$arrItr = new ArrayIterator( 
    array('G', 'e', 'e', 'k', 's', 'f', 'o', 'r') 
); 
  
// Loop to display the array iterator key 
foreach($arrItr as $element) { 
    echo $arrItr->key() . "\n"; 
} 
   
?>
輸出:
0
1
2
3
4
5
6
7

示例2:

<?php 
   
// Declare an ArrayIterator 
$arrItr = new ArrayIterator( 
    array( 
        "a" => "Geeks", 
        "b" => "for", 
        "c" => "Geeks"
    ) 
); 
   
// Append the element into array iterator 
$arrItr->append("Computer"); 
$arrItr->append("Science"); 
$arrItr->append("Portal"); 
  
// Display the key and its value of 
// array iterator 
foreach($arrItr as $element) { 
    echo "key: " . $arrItr->key() . "  Value: "
            . $arrItr->current() . "\n"; 
} 
  
?>
輸出:
key: a  Value: Geeks
key: b  Value: for
key: c  Value: Geeks
key: 0  Value: Computer
key: 1  Value: Science
key: 2  Value: Portal

參考: https://www.php.net/manual/en/arrayiterator.key.php



相關用法


注:本文由純淨天空篩選整理自jit_t大神的英文原創作品 PHP | ArrayIterator key() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。