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


PHP pos()用法及代碼示例


pos()是PHP中的內置函數,用於返回內部指針當前指向的數組中元素的值。返回值後,pos()函數不會遞增或遞減內部指針。在PHP中,所有數組都有一個內部指針。此內部指針指向該數組中的某個元素,該元素稱為數組的當前元素。通常,當前元素是數組中第一個插入的元素。

用法:

pos($array)

參數:pos()函數接受單個參數$array。這是我們要查找當前元素的數組。


Return Value:返回內部指針當前指向的數組中元素的值。如果數組為空,則pos()函數將返回FALSE。

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

程序1:

<?php 
    // input array 
    $arr = array("Ram", "Shyam", "Geeta", "Rita"); 
      
    // Here pos() function returns current element. 
    echo pos($arr)."\n";  
      
    // next() function increments internal pointer  
    // to point to next element i.e, Shyam. 
    echo next($arr)."\n"; 
      
    // Printing current position element. 
    echo pos($arr)."\n";  
      
    // Printing previous element of the current one. 
    echo prev($arr)."\n";  
      
    // Printing end element of the array 
    echo end($arr)."\n";  
      
    // Printing current position element. 
    echo pos($arr)."\n";  
?>

輸出:

Ram
Shyam
Shyam
Ram
Rita
Rita

程序2:

<?php 
    // input array 
    $arr = array("P", "6", "M", "F"); 
      
    // Here pos() function returns current element. 
    echo pos($arr)."\n";  
      
    // next() function increments internal pointer  
    // to point to next element i.e, 6. 
    echo next($arr)."\n"; 
      
    // Printing current position element. 
    echo pos($arr)."\n";  
      
    // Printing previous element of the current one. 
    echo prev($arr)."\n";  
      
    // Printing end element of the array 
    echo end($arr)."\n";  
      
    // Printing current position element. 
    echo pos($arr)."\n";  
?>

輸出:

P
6
6
P
F
F

參考:
http://php.net/manual/en/function.pos.php



相關用法


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