PHP array function sequence array_values() functions and methods to obtain array element values_PHP tutorial

WBOY
Release: 2016-07-21 15:23:24
Original
967 people have browsed it

array_values() 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 is 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 - the default value. Does not depend on type.


Example 1

Copy code The code is as follows:

$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:
Copy code The 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 strict parameter (false):
Copy code The 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 strict parameter (true):
Copy code The code is as follows:

$a=array(10,20,30,"10");
print_r(array_keys($a,"10",true));
?>

Output:

Array ( [0] => 3)

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/324479.htmlTechArticlearray_values() Definition and usage array_keys() function 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...
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!