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
相關用法
- p5.js nfc()用法及代碼示例
- p5.js nfp()用法及代碼示例
- d3.js d3.hcl()用法及代碼示例
- p5.js nfs()用法及代碼示例
- PHP cos( )用法及代碼示例
- PHP sin( )用法及代碼示例
- p5.js nf()用法及代碼示例
- PHP tan( )用法及代碼示例
- PHP pow( )用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- d3.js d3.set.has()用法及代碼示例
- PHP Ds\Set xor()用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 PHP | pos() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。