Php数据类型简介
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Php数据类型简介相关的知识,希望对你有一定的参考价值。
php支持8种原始数据类型。
四种标量类型:boolean(布尔型)、integer(整型)、float(浮点型,也称作double)、string(字符串)。
两种符合类型:array(数组)、object(对象)
两种特殊类型:resource(资源)、NULL(无类型)
变量的类型通常不是由程序员设定的,确切地说,是由php根据该变量使用的上下文在运行时决定的。
注:如果想看某个表达式的值和类型,用var_dump()函数。如果只是想得到一个易读懂的类型的表达方式用于调试,用gettype()函数。要查看某个类型,不要用gettype(),而用is_type函数。
<?php
header("Content-type:text/html;charset=utf-8");
$a_bool = TRUE; // a boolean
$a_str = "foo"; // a string
$a_str2 = ‘foo‘; // a string
$an_int = 12; // an integer
echo gettype($a_bool); // prints out: boolean
echo gettype($a_str); // prints out: string
if(is_int($an_int)){
$an_int += 4;
echo $an_int; //print out : 16
}
if(is_string($a_bool)){
echo "String:$a_bool";
}
?>
header("Content-type:text/html;charset=utf-8");
$a_bool = TRUE; // a boolean
$a_str = "foo"; // a string
$a_str2 = ‘foo‘; // a string
$an_int = 12; // an integer
echo gettype($a_bool); // prints out: boolean
echo gettype($a_str); // prints out: string
if(is_int($an_int)){
$an_int += 4;
echo $an_int; //print out : 16
}
if(is_string($a_bool)){
echo "String:$a_bool";
}
?>
如果要将一个变量强制转化为某类型,可以对其使用强制转换或者settype()函数。
以上是关于Php数据类型简介的主要内容,如果未能解决你的问题,请参考以下文章