pos()是PHP中的内置函数, 用于返回内部指针当前指向的数组中元素的值。返回值后, pos()函数不会递增或递减内部指针。在PHP中, 所有数组都有一个内部指针。此内部指针指向该数组中的某个元素, 称为该数组的当前元素。通常, 当前元素是数组中第一个插入的元素。
语法如下:
pos($array)
参数:pos()函数接受单个参数$数组。这是我们要查找当前元素的数组。
返回值:它返回内部指针当前指向的数组中元素的值。如果数组为空, 则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" ;
?>
输出如下:
RamShyamShyamRamRitaRita
程序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" ;
?>
输出如下:
P66PFF
【PHP | pos()函数用法详细指南】参考:
http://php.net/manual/en/function.pos.php
推荐阅读
- C#方法介绍和用法详细指南
- 经典推荐(一些有用的Linux技巧详细介绍)
- 输入字符串中出现的最大字符数|s2
- Python检查两个列表是否相同
- python访问MySQL数据库及其操作详解 – Python高级开发教程
- python CGI编程和Web开发 – Python高级开发教程
- python面向对象编程(类和对象详解介绍 – Python高级开发教程)
- python异常处理和断言 – Python入门开发教程
- python函数定义和操作详解介绍 – Python入门开发教程