Please ensure Javascript is enabled for purposes of website accessibility knowledgebase.co.il - מדריכים - קטגוריה - PHP - כיצד לבדוק אם קיים מפתח במערך ב-PHP
אתם צופים ב: כיצד לבדוק אם קיים מפתח במערך ב-PHP

כיצד לבדוק אם קיים מפתח במערך ב-PHP

במדריך זה נלמד איך לבדוק אם קיים מפתח במערך ב-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

עליכם להתחבר על מנת להגיב בעמוד זה.