Tools, FAQ, Tutorials:
Finding a Given Value in an Array in PHP
How To Find a Specific Value in an Array in PHP?
✍: FYIcenter.com
There are two functions can be used to test if a value is defined in an array or not:
Here is a PHP script on how to use array_search():
<?php
$array = array("Perl", "PHP", "Java", "PHP");
print("Search 1: ".array_search("PHP",$array)."\n");
print("Search 2: ".array_search("Perl",$array)."\n");
print("Search 3: ".array_search("C#",$array)."\n");
print("\n");
?>
This script will print:
Search 1: 1 Search 2: 0 Search 3:
⇒ Retrieving All Keys from an Array in PHP
⇐ Verifying If a Key Exists in an Array in PHP
2017-01-21, ∼2481🔥, 0💬
Popular Posts:
What are the differences of Differences of evaluateTransaction() and submitTransaction() of the fabr...
How To Pad an Array with the Same Value Multiple Times in PHP? If you want to add the same value mul...
How to install "The Windows SDK version 8.1"? I need to build my Visual Studio C++ applications. If ...
How to install .NET Framework in Visual Studio Community 2017? I have the Visual Studio Installer in...
How to use the "send-one-way-request" Policy statement to call an extra web service for an Azure API...