array_search: Searches the array for a given value and returns the corresponding key if successful : Array Function « Data Structure « PHP

PHP
1. Chart
2. Class
3. Components
4. Cookie Session
5. Data Structure
6. Data Type
7. Date
8. Design Patterns
9. Development
10. DNS
11. Email
12. File Directory
13. Form
14. Functions
15. Graphics Image
16. HTML
17. Language Basics
18. Login Authentication
19. Math
20. MySQL Database
21. Network
22. Operator
23. PDF
24. Reflection
25. Statement
26. String
27. Utility Function
28. Web Services SOAP WSDL
29. XML
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
PHP » Data Structure » Array Function 
array_search: Searches the array for a given value and returns the corresponding key if successful


<?php
   $state["Ohio""March 1";
   $state["Delaware""December 7";
   $state["Pennsylvania""December 12";
   $founded = array_search("December 7", $state);
   if ($foundedecho "The state $founded was founded on $state[$founded]";
?>
           
       
Related examples in the same category
1. array_combine: Creates an array by using one array for keys and another for its values
2. array_key_exists
3. array_keys: Return all the keys of an array
4. array_diff_assoc: Array difference for associate array
5. array_flip: Exchanges all keys with their associated values in an array
6. array_values: Return all the values of an array
7. Using the array_unique () Function
8. Array array_chunk
9. Array shuffle
10. array_unshift
11. Using the array_intersect () Function
12. Using the array_diff () Function
13. array_merge_recursive: Merge two or more arrays recursively
14. Using the array_merge () Function
15. array_rand: Pick one or more random entries out of an array
16. Array count value
17. array_reverse: Return an array with elements in reverse order
18. array_pop: Pop the element off the end of array
19. array_push: Push one or more elements onto the end of array
20. array_pad: Pad array to the specified length with a value
21. Using the array_push () Function
22. count() function can also be used to access certain elements in the array
23. The count() Function
24. Using_the array_shift () Function
25. array_splice: Remove a portion of the array and replace it with something else
26. Using the array_slice () Function
27. current: Return the current element in an array
28. end: Set the internal pointer of an array to its last element
29. in_array: Checks if a value exists in an array
30. array_multisort: Sort multiple or multi-dimensional arrays
31. array_sum: Calculate the sum of values in an array
32. next: Advance the internal array pointer of an array
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.