Return an array containing the keys:
<?php
$a=array("Volvo"=>"XC90","BMW"=>"X5","Toyota"=>"Highlander");
print_r(array_keys($a));
?>
Try it Yourself »
The array_keys() function returns an array containing the keys.
array_keys(
array, value, strict)
Parameter | Description |
---|---|
array | Required. Specifies an array |
value | Optional. You can specify a value, then only the keys with this value are returned |
strict | Optional. Used with the value parameter. Possible values:
|
Return Value: | Returns an array containing the keys |
---|---|
PHP Version: | 4+ |
Changelog: | The strict parameter was added in PHP 5.0 |
Using the value parameter:
<?php
$a=array("Volvo"=>"XC90","BMW"=>"X5","Toyota"=>"Highlander");
print_r(array_keys($a,"Highlander"));
?>
Try it Yourself »
Using the strict parameter, false:
<?php
$a=array(10,20,30,"10");
print_r(array_keys($a,"10",false));
?>
Try it Yourself »
Using the strict parameter, true:
<?php
$a=array(10,20,30,"10");
print_r(array_keys($a,"10",true));
?>
Try it Yourself »
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!