Home  >  Article  >  Backend Development  >  PHP array function array_search() returns the key name by element value

PHP array function array_search() returns the key name by element value

WBOY
WBOYOriginal
2016-07-25 08:53:141051browse
  1. $a=array("a"=>"Dog","b"=>"Cat","c"=>"Horse");
  2. echo array_search( "Dog",$a);
  3. ?>
Copy code

output: a



Statement:
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