php.js: функция gettype ()
функция gettype ()
Функция gettype () возвращает тип переменной.
Версия:
1103.1210
Синтаксис
GetType (имя_переменный)
Параметры:
название | Описание | Необходимые / Необязательный | Тип |
---|---|---|---|
variable_name | Имя переменной. | необходимые | Смешанная * |
* Смешанный: Смешанный указывает, что параметр может принимать несколько (но не обязательно все) типов.
Пример функции php.js gettype ():
В следующем веб-документе функция gettype () возвращает тип различных переменных.
<!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 : gettype() function example</title>
<script type="text/javascript" src="../../phpjs/variable/variable.min.js"> </script>
</head>
<body>
<h1 style="color: green">php.js : gettype() function example</h1>
<h3>Type of the various variable.</h3>
<hr />
<script type="text/javascript">
//This is done to make the following JavaScript code compatible to XHTML. <![CDATA[
x='abc';
y=new Array(12,13,14,15);
z=new Date();
document.write(gettype(x)+'<br />');
document.write(gettype(y)+'<br />');
document.write(gettype(z)+'<br />');
//]]>
</script>
</body>
</html>
Вывод функции:
строка массив Дата
Посмотреть пример функции php.js gettype () в браузере
Предыдущая: php.js: функция get_resource_type ()
Далее: функция php.js: intval ()
Новый контент: Composer: менеджер зависимостей для PHP , R программирования
disqus2code