במדריך זה נלמד איך לבדוק אם משתנה הוא NULL ב-PHP.
פונקציה בשימוש:
()is_null
ניתן להשתמש בפונקציה ()is_null על מנת לבדוק אם משתנה מכיל ערך NULL או לא.
בפניכם דוגמא על אופן הביצוע:
<?php
$variable = NULL;
if(is_null($variable)){
echo 'This line is printed, because the $variable is null and does not container any value';
}
?>
פלט
This line is printed, because the $variable is null and does not container any value
הפונקציה תחזיר גם ערך true עבור משתנה שלא הוגדר (undefined).
<?php
if(is_null($newVariable)){
echo 'This line is printed, because the $newVariable is null.';
}
?>
פלט:
This line is printed, because the $newVariable is null.
במיה ומופעלות שגיאות ייתכן ותראו שגיאה כמו השגיאה הבאה: