PHP array_keys() Function
Example
Return an array containing the keys:
<?php
$a=array("Volvo"=>"XC90","BMW"=>"X5","Toyota"=>"Highlander");
print_r(array_keys($a));
?>
Try it Yourself »
Definition and Usage
The array_keys() function returns an array containing the keys.
Syntax
array_keys(array, value, strict)
Parameter Values
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:
|
Technical Details
Return Value: | Returns an array containing the keys |
---|---|
PHP Version: | 4+ |
Changelog: | The strict parameter was added in PHP 5.0 |
More Examples
Example
Using the value parameter:
<?php
$a=array("Volvo"=>"XC90","BMW"=>"X5","Toyota"=>"Highlander");
print_r(array_keys($a,"Highlander"));
?>
Try it Yourself »
Example
Using the strict parameter, false:
<?php
$a=array(10,20,30,"10");
print_r(array_keys($a,"10",false));
?>
Try it Yourself »
Example
Using the strict parameter, true:
<?php
$a=array(10,20,30,"10");
print_r(array_keys($a,"10",true));
?>
Try it Yourself »
❮ PHP Array Reference