search
Homephp教程PHP开发PHP array function sequence array_keys() - Get array key name

array_keys() Definition and Usage
array_keys() function returns a new array containing all the key names in the array.

If the second parameter is provided, only the key name with the key value of this value will be returned.

If the strict parameter is specified as true, PHP will use equality comparison (===) to strictly check the data type of the key value.

Syntax
array_keys(array,value)
Parameter Description
array required. Specifies the input array.
value Optional. The index (key) of the specified value.
strict Optional. Used with the value parameter. Possible values:

true - Returns the key with the specified value based on the type.
false - Default value. Does not depend on type.


Example 1

<?php 
$a=array("a"=>"Horse","b"=>"Cat","c"=>"Dog"); 
print_r(array_keys($a)); 
?>

Output:

Array ([0] => a [1] => b [2] => c )
Example 2
Use value parameter:

<?php 
$a=array("a"=>"Horse","b"=>"Cat","c"=>"Dog"); 
print_r(array_keys($a,"Dog")); 
?>

Output:

Array ([0] => c)
Example 3
Use strict parameter (false ):

<?php 
$a=array(10,20,30,"10"); 
print_r(array_keys($a,"10",false)); 
?>

Output:

Array ( [0] => 0 [1] => 3 )
Example 4
Use strict parameter (true):

<?php 
$a=array(10,20,30,"10"); 
print_r(array_keys($a,"10",true)); 
?>

Output:

Array ([0] => 3)


More php array function sequence array_keys() - For articles related to obtaining array key names, please pay attention to 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 Article

Hot Tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

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.

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.