Php array operation to get the index value of array elements

Source: Internet
Author: User

To quickly obtain the index value, we can use the php array_values () function to quickly and concisely find what we want. Next, let's take a look at the usage of the array_values () function.

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

The Code is as follows: Copy code

<? Php
$ 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:

The Code is as follows: Copy code

<? Php
$ 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 ):

The Code is as follows: Copy code

<? Php
$ 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 ):

The Code is as follows: Copy code

<? Php
$ 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.