$v){if($v==value){echo $k;}}", which can output the corresponding key name."/> $v){if($v==value){echo $k;}}", which can output the corresponding key name.">
search
HomeBackend DevelopmentPHP ProblemIs it possible to find the key name (key) in a php array by value?

php array can find the corresponding key name (key) by value. Two search methods: 1. Use "array_search(value, array)", which will return the corresponding key name; 2. Use "foreach($arr as $k=>$v){if($v==value){ echo $k;}}", which can output the corresponding key name.

Is it possible to find the key name (key) in a php array by value?

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

php array can be found by value The corresponding key name (key).

The following article will introduce to you two search methods.

Method 1: Use array_search() function

array_search() function can search for the specified key value in the array and return the corresponding key name.

<?php
header(&#39;content-type:text/html;charset=utf-8&#39;);   
$arr=array("id"=>1,"name"=>"李华","age"=>23);
var_dump($arr);
echo "指定值&#39;李华&#39;对应的键名为:".array_search("李华",$arr);
?>

Is it possible to find the key name (key) in a php array by value?

Method 2: Use the foreach statement to traverse the array and search

  • Use the foreach statement to traverse the array

  • In the loop body, use the "==" operator to check whether the specified value is in the element. If it is, return the corresponding key name

<?php
header(&#39;content-type:text/html;charset=utf-8&#39;);   
$arr=array("id"=>1,"name"=>"张三","age"=>23);
var_dump($arr);
foreach ($arr as $key => $value){
    if($value==23){
    	echo "指定值&#39;23&#39;对应的键名为:".$key;
    }
}
?>

Is it possible to find the key name (key) in a php array by value?

Recommended study: "PHP Video Tutorial"

The above is the detailed content of Is it possible to find the key name (key) in a php array by value?. 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

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

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.

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft