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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。