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!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Zend Studio 13.0.1
Powerful PHP integrated development environment

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

Dreamweaver Mac version
Visual web development tools

Atom editor mac version download
The most popular open source editor

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
