How to use array_keys function in php

藏色散人
Release: 2023-02-22 18:08:01
Original
2892 people have browsed it

Usage of array_keys function in php: [array_keys(array,value,strict)]. The array_keys function is used to return a new array containing all the keys in the array.

How to use array_keys function in php

php The array_keys function returns a new array containing all the key names in the array. Its syntax is array_keys(array,value,strict). The parameter array is required and refers to Specifies an array.

(Recommended tutorial: php video tutorial)

How to use the php array_keys function?

Function: Return the contained array A new array of all key names.

Syntax:

array_keys(array,value,strict)
Copy after login

Parameters:

array Required. Specifies an array.

value Optional. You can specify a key value, and then only the key name corresponding to that key value 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 - the default value. Independent of type, the number 5 is the same as the string "5".

Description:

Returns a new array containing all the key names in the array. If the second argument is provided, only the key names whose key value is this value are returned. If the strict parameter is specified as true, PHP uses equality comparison (===) to strictly check the data type of the key value.

php array_keys() function usage example 1

<?php
$a = array("class" => "php中文网","name" => "西门","job" => "讲师");
print_r(array_keys($a));
?>
Copy after login

Output:

Array ( [0] => class [1] => name [2] => job )
Copy after login
Copy after login

php array_keys() function usage example 2

<?php
$a = array("class" => "php中文网","name" => "无忌哥哥","job" => "考官");
print_r(array_keys($a));
?>
Copy after login

Output:

Array ( [0] => class [1] => name [2] => job )
Copy after login
Copy after login

The above is the detailed content of How to use array_keys function in php. 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!