search
HomeBackend DevelopmentPHP ProblemHow to query element position in php array

Query method: 1. Use array_search() to search for a given element value and return the key name or index, syntax "array_search(element value, array)"; 2. Use implode() and strpos() , the syntax is "strpos(implode(array),element value."")".

How to query element position in php array

The operating environment of this tutorial: windows7 system, PHP7.1 version, DELL G3 computer

php array query element Position method:

Method 1: Using array_search() function

<?php
$array=array(2,3,4,1,5);
$find=3;

//利用数组查找 找到所需要元素的索引位置
function find_by_array_search($array,$find)
{
    return array_search($find,$array);
}
var_dump(find_by_array_search($array,$find));
?>

How to query element position in php array

Method 2: Use string search-strpos()

Idea:

  • Use implode() to convert the array into a string

  • Use the strpos() function to find the first occurrence of a string in another string.

<?php
$array=array(2,3,4,1,5);
$find=4;

//字符串查找
function find_by_string($array,$find)
{
    $string=implode($array);
    return strpos($string,$find."");
}
var_dump(find_by_string($array,$find));
?>

How to query element position in php array

Recommended learning: "PHP Video Tutorial"

The above is the detailed content of How to query element position in php array. For more information, please follow other related articles on the PHP Chinese website!

Statement
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 admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor