php array_keys returns the key name of the array in detail

墨辰丷
Release: 2023-03-28 16:06:02
Original
1669 people have browsed it

The array_keys function in php is used to return a new array containing all the key names in the array. This article introduces in detail how to use the PHP array_keys function. Coders who need it can refer to

array_keys returns some or all key names in the array

Instructions

array array_keys (array $array [, mixed $search_value [, bool $strict = false ]] )

array_keys() Returns the number or string key in the $array array name.

If the optional parameter search_value is specified, only the key name of the value will be returned. Otherwise all keys in the $array array will be returned.

Detailed explanation of parameters


Parameters Description
array Required. An array containing the keys to be returned.
search_value Optional. If this parameter is specified, only keys containing these values ​​will be returned.
strict

Optional. Used with the value parameter. Possible values:

  • #true - Returns the key name with the specified key value. Depending on the type, the number 5 is not the same as the string "5".

  • false - Default value. Independent of type, the number 5 is the same as the string "5".

Return value

Returns all keys in array.

Example

<?php
$array = array( 0 => 100 , "color" => "red" );
 print_r ( array_keys ( $array ));

 $array = array( "blue" , "red" , "green" , "blue" , "blue" );
 print_r ( array_keys ( $array , "blue" ));

 $array = array( "color" => array( "blue" , "red" , "green" ),
        "size"  => array( "small" , "medium" , "large" ));
 print_r ( array_keys ( $array ));
 ?>
Copy after login

The above routine will output:

Array ( [0] => 0 [1] => color ) Array ( [0] => 0 [1] => 3 [2] => 4 ) Array ( [0] => color [1] => size )

The above is the entire content of this article, I hope it will be helpful to everyone's study.


Related recommendations:

Analysis of the difference between new self() and new static() in PHP

php case of readfile() modifying file upload size

Detailed explanation of PHP custom image center cropping function

The above is the detailed content of php array_keys returns the key name of the array in detail. 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 admin@php.cn
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!