gettype_PHP gettype()函数与示例

gettype

PHP gettype()函数 (PHP gettype() function)

In PHP, we have a library function gettype() to identify the type of data. The function is primarily used to sanity check the type of data being input in a variable. The function can identify the data into the following data types:

在PHP中,我们有一个库函数gettype()来标识data的类型 。 该功能主要用于完整性检查变量中输入的数据类型。 该函数可以将数据识别为以下数据类型:

  • Integer

    整数

  • Double

  • String

  • Array

    数组

  • Object

    目的

  • Boolean

    布尔型

  • Resource

    资源资源

  • Null

    空值

  • Unknown

    未知

Syntax:

句法:

    gettype($var)

Where, $var is a variable containing data that needs to be checked.

其中, $ var是包含需要检查的数据的变量。

Example 1:

范例1:

<?php
// Creating variables with random datatype
$var1 = 1;
$var2 = 1.1;
$var3 = NULL;
$var4 = "example";
$var5 = false;

// using gettype() function to 
// get the data type of the variable
echo gettype($var1)."\n";
echo gettype($var2)."\n";
echo gettype($var3)."\n";
echo gettype($var4)."\n";
echo gettype($var5)."\n";
?>

Output

输出量

integer
double
NULL
string
boolean

Example 2:

范例2:

<?php
	// creating an array with random datatypes
	$arr = array(21, 1.99, new stdClass, "hello, World", false);
	
	// getting the type of each element of array
	// foreach  is used to initialize array 
	// as independent values
	foreach ($arr as $value) {
		// getting and printing the type
		echo gettype($value), "\n";
    }
?>

Output

输出量

integer
double
object
string
boolean


翻译自: https://www.includehelp.com/php/gettype-function-with-example.aspx

gettype

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值