“Что такое is_null в php” Ответ

Null Php

// The is_null() function checks whether a variable is NULL or not. This function returns true (1) if the variable is NULL, otherwise it returns false/nothing.

<?php
    $var = NULL;  
	if (is_null($var)) {
      	echo "yes, is null";
      
    } else {
      	echo "not null";
    }
?>
  
Zidane (Vi Ly - VietNam)

Что такое is_null в php

// is _nuul function returens wether a var is null ore not . 
// if the var is null the function returns 1. if it is not null retyrns false / nothing

<?php
  
  $x= Null; 
if(is_null($x){  
  echo " yes";}else{ echo "false";}
   
   
Ahmad Alhamada

Ответы похожие на “Что такое is_null в php”

Вопросы похожие на “Что такое is_null в php”

Больше похожих ответов на “Что такое is_null в php” по PHP

Смотреть популярные ответы по языку

Смотреть другие языки программирования