Functions and methods for retrieving array element values from array_values () of the php array function sequence

Source: Internet
Author: User
The array_keys () function returns a new array containing all the key names in the array. If the second parameter is provided, only the definition and usage of the key name array_values () with the key value being returned
The 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 of the value is returned.

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

Syntax
Array_keys (array, value)
Parameter description
Array is required. Specifies the input array.
Value is optional. The index (key) of the specified value ).
Strict is optional. Used with the value parameter. Possible values:

True-return the key name with the specified value based on the type.
False-default value. Does not depend on type.


Example 1
Copy codeThe code is as follows:
$ A = array ("a" => "Horse", "B" => "Cat", "c" => "Dog ");
Print_r (array_keys ($ ));
?>

Output:

Array ([0] => a [1] => B [2] => c)
Example 2
Use the value parameter:
Copy codeThe code is as follows:
$ A = array ("a" => "Horse", "B" => "Cat", "c" => "Dog ");
Print_r (array_keys ($ a, "Dog "));
?>

Output:

Array ([0] => c)
Example 3
Use the strict parameter (false ):
Copy codeThe code is as follows:
$ A = array (10, 20, 30, "10 ");
Print_r (array_keys ($ a, "10", false ));
?>

Output:

Array ([0] => 0 [1] => 3)
Example 4
Use the strict parameter (true ):
Copy codeThe code is as follows:
$ A = array (10, 20, 30, "10 ");
Print_r (array_keys ($ a, "10", true ));
?>

Output:

Array ([0] => 3)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.