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

כיצד לבדוק אם משתנה הוא NULL ב-PHP

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

במיה ומופעלות שגיאות ייתכן ותראו שגיאה כמו השגיאה הבאה:

 

 

 

 

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