Thursday, October 23, 2025
HomeLanguagesPHP pos() Function

PHP pos() Function

The pos() is an inbuilt function in PHP which is used to return the value of the element in an array which the internal pointer is currently pointing to. The pos() function does not increment or decrement the internal pointer after returning the value. In PHP all arrays have an internal pointer. This internal pointer points to some element in that array which is called as the current element of the array. Usually, the current element is the first inserted element in the array.

Syntax:

pos($array)

Parameters: The pos() function accepts a single parameter $array. It is the array of which we want to find the current element.

Return Value: It returns the value of the element in the array which the internal pointer is currently pointing to. If the array is empty then the pos() function returns FALSE.

Below programs illustrate the pos() function in PHP:

Program 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"; 
?>


Output:

Ram
Shyam
Shyam
Ram
Rita
Rita

Program 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"; 
?>


Output:

P
6
6
P
F
F

Reference:
http://php.net/manual/en/function.pos.php

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS