php.js: функция is_null ()
функция is_null ()
Функция is_null () используется для проверки, является ли переменная нулевой или нет. Функция возвращает true, если переменная равна нулю, иначе false.
Версия:
1103.1210
Синтаксис:
is_null (var_name)
Параметры:
название | Описание | Необходимые / Необязательный | Тип |
---|---|---|---|
var_name | Переменная проверяется | необходимые | Смешанная * |
* Смешанный: Смешанный указывает, что параметр может принимать несколько (но не обязательно все) типов.
Пример функции php.js is_null ()
В следующем веб-документе функция is_null () проверяет, является ли переменная нулевой или нет.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>php.js : is_null() function example</title>
<script type="text/javascript" src="../../phpjs/variable/variable.min.js"> </script>
</head>
<body>
<h1 style="color: green">php.js : is_null() function example</h1>
<h3>Returns true if variable is null.</h3>
<hr />
<script type="text/javascript">
//This is done to make the following JavaScript code compatible to XHTML. <![CDATA[
var_name = true;
if (is_null(var_name))
{
document.write('Variable is null');
}
else
{
document.write('Variable is not null');
}
//]]>
</script>
</body>
</html>
Вывод функции:
Переменная не NULL
Посмотреть пример функции php.js is_null () в браузере
Предыдущая: php.js: is_long () функция
Далее: функция php.js: is_numeric ()
Новый контент: Composer: менеджер зависимостей для PHP , R программирования
disqus2code