Detailed explanation of the use of php pos() function

藏色散人
Release: 2023-04-05 14:22:01
Original
3237 people have browsed it

pos() is a built-in function in PHP that returns the value of the element in the array currently pointed to by the internal pointer. After returning a value, the pos() function does not increment or decrement the internal pointer. In PHP, all arrays have an internal pointer. This internal pointer points to an element in the array, which is called the current element of the array. Normally, the current element is the first inserted element in the array.

Detailed explanation of the use of php pos() function

Syntax:

pos($array)
Copy after login

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

Return value: It returns the value of the element in the array currently pointed by the internal pointer. If the array is empty, the pos() function returns FALSE.

PHP Code Example 1:

Copy after login

Output:

PHP 
Java 
Java 
PHP 
Go 
Go
Copy after login

Code Example 2:

Copy after login

Output:

P 
6 
6 
P 
F 
F
Copy after login

Recommended related video tutorials: "PHP Tutorial"

This article is about the use of the php pos() function. I hope it will be helpful to friends in need!

The above is the detailed content of Detailed explanation of the use of php pos() function. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact [email protected]
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!