במדריך זה נלמד איך לבדוק אם קיים מפתח במערך ב-PHP.
פונקציה בשימוש:
()array_key_exists
ניתןל להשתמש בפונקציה ()array_key_exists כדי לבדוק אם key או index נתון קיים במערך או לא.
פונקציה זו מחזירה TRUE על הצלחה או FALSE על כישלון.
בפניכם דוגמא על אופן הביצוע:
<?php
$cities = array("Jerusalem"=>"Israel", "India"=>"Mumbai", "UK"=>"London", "USA"=>"New York");
// Chec if the key exists in the array or not
if(array_key_exists("Jerusalem", $cities)){
echo "The key 'Jerusalem' is exists in the cities array";
} else {
echo "The Key 'Jerusalem' does not exist in the cities array";
}
?>
פלט:
The key 'Jerusalem' is exists in the cities array