
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Check Existence of Value in Array Efficiently in PHP
A quick way of doing this has been shown below −
if (array_flip($set)[$value] !== null) { echo "something"; //take some action }
To customize the number of keys, the function can be customized in the below manner −
function array_keys_exists(array $keys, array $arr) { return !array_diff_key(array_flip($keys), $arr); }
Advertisements