For PHP developers, arrays are often needed. Arrays are stored in key-value pairs. When the amount of data is large, finding an element may become time-consuming. PHP has a variety of built-in functions to find whether a specified value exists in an array. This article will introduce some of them and the differences between them.
in_array function
in_array()
function is one of PHP’s built-in array functions, which is used to find a specified value in an array. Its syntax is as follows:
bool in_array ( mixed $needle , array $haystack [, bool $strict = FALSE ] )
Where,
- mixed $needle: The value to be found.
- array $haystack: array to search for.
- bool $strict: Whether to use strict mode. If true, the search compares data types and values of different types are not equal. Default is false.
This function will return a Boolean value indicating whether the value is in the array. If so, returns true, otherwise returns false.
For example, the following code demonstrates how to use the in_array()
function to find whether the string "apple" exists in the array $fruits:
$fruits = array("banana", "orange", "apple", "lemon"); if (in_array("apple", $fruits)) { echo "找到了 apple。"; } else { echo "没有找到 apple。"; }
The output result is:
找到了 apple。
array_search function
array_search()
The function is also one of PHP's built-in array functions. It is used to find a specified value in an array and return its key. . Its syntax is as follows:
mixed array_search ( mixed $needle , array $haystack [, bool $strict = false ] )
Where,
- mixed $needle: The value to be found.
- array $haystack: array to search for.
- bool $strict: Whether to use strict mode. If true, the search compares data types and values of different types are not equal. Default is false.
This function will return the key of the found value (using the numeric key and the associated key), or false if not found.
For example, the following code demonstrates how to use the array_search()
function to find whether the string "apple" exists in the array $fruits and return its key:
$fruits = array("banana", "orange", "apple", "lemon"); $key = array_search("apple", $fruits); if ($key) { echo "找到了 apple,它的键是 " . $key . "。"; } else { echo "没有找到 apple。"; }
The output result is:
找到了 apple,它的键是 2。
It should be noted that if the key corresponding to the value is 0, the array_search()
function will return 0, which may cause problems with the program, so Type judgment is required.
isset and array_key_exists functions
isset()
function and array_key_exists()
function can be used to determine whether a key exists in the array. The syntax is as follows:
bool isset ( mixed $var [, mixed $... ] ) bool array_key_exists ( mixed $key , array $array )
Among them,
- mixed $var/$key: the key to be found.
- mixed $...: Optional. Multiple keys to find.
- array $array: the array to search for.
Both functions will return a Boolean value indicating whether the key exists in the array.
It should be noted that the difference between the two functions is that the isset()
function can also be used to determine whether a variable exists. If the variable is not declared, it will return false. The array_key_exists()
function can only be used for arrays and does not support searching multi-dimensional arrays.
For example, the following code demonstrates how to use the isset()
function and the array_key_exists()
function to determine whether a key exists:
$fruits = array("banana" => 2, "orange" => 3, "apple" => 4, "lemon" => 1); if (isset($fruits["banana"])) { echo "存在键 banana。"; } else { echo "不存在键 banana。"; } if (array_key_exists("orange", $fruits)) { echo "存在键 orange。"; } else { echo "不存在键 orange。"; }
Output results For:
存在键 banana。存在键 orange。
Summary
This article introduces four functions for finding elements in PHP arrays: in_array()
, array_search()
, isset()
and array_key_exists()
. These functions can be selected and used according to different needs, among which the array_search()
function has certain advantages because it returns keys instead of Boolean values. But it should be noted that to determine whether the value is in the array, it is best to use the in_array()
function, because if the key is 0, the array_search()
function will return 0.
Finally, it is worth mentioning that none of the above functions are suitable for multi-dimensional arrays. For multi-dimensional arrays, we need to use recursion or other algorithms to complete the search operation.
The above is the detailed content of How to find whether a specified string exists in an array in php. For more information, please follow other related articles on the PHP Chinese website!

The article compares ACID and BASE database models, detailing their characteristics and appropriate use cases. ACID prioritizes data integrity and consistency, suitable for financial and e-commerce applications, while BASE focuses on availability and

The article discusses securing PHP file uploads to prevent vulnerabilities like code injection. It focuses on file type validation, secure storage, and error handling to enhance application security.

Article discusses best practices for PHP input validation to enhance security, focusing on techniques like using built-in functions, whitelist approach, and server-side validation.

The article discusses strategies for implementing API rate limiting in PHP, including algorithms like Token Bucket and Leaky Bucket, and using libraries like symfony/rate-limiter. It also covers monitoring, dynamically adjusting rate limits, and hand

The article discusses the benefits of using password_hash and password_verify in PHP for securing passwords. The main argument is that these functions enhance password protection through automatic salt generation, strong hashing algorithms, and secur

The article discusses OWASP Top 10 vulnerabilities in PHP and mitigation strategies. Key issues include injection, broken authentication, and XSS, with recommended tools for monitoring and securing PHP applications.

The article discusses strategies to prevent XSS attacks in PHP, focusing on input sanitization, output encoding, and using security-enhancing libraries and frameworks.

The article discusses the use of interfaces and abstract classes in PHP, focusing on when to use each. Interfaces define a contract without implementation, suitable for unrelated classes and multiple inheritance. Abstract classes provide common funct


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Atom editor mac version download
The most popular open source editor

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.