search
HomeBackend DevelopmentPHP TutorialSummary of PHP data types_PHP tutorial
Summary of PHP data types_PHP tutorialJul 13, 2016 pm 05:50 PM
falseintphptruevaluenameSummarizedatatypeexpress

PHP has a total of 8 data types:

 类型名称  类型表示  取值
 bool  布尔型   true,false
 integer  整型 -2147483647-2147483648
 string  字符串型  字符串长度取决于机器内存
 float  浮点型  最大值1.8e308
 object  对象 通过new实例化 $obj=new person(); 
 array  数组类型  $arr=array(1,2,3,4,5,6);//一维数组
 resourse    
 null  空值  null
Type name

Type representation

Value

bool Boolean true,false
integer Integer type -2147483647-2147483648
string String type The string length depends on the machine memory
float Floating point type Maximum value 1.8e308
object Object Instantiated by new $obj=new person();
array Array type $arr=array(1,2,3,4,5,6);//One-dimensional array
resource
null Null value null

Boolean bool:
 转换  结果
 布尔型的false var_dump((bool) false)  bool(false)
 整型0  var_dump((bool) 0);  bool(false)
 浮点型0.0  var_dump((bool) 0.0);  bool(false)
 字符串‘0’ var_dump((bool) '0');  bool(false)
 空数组$arr=array(); var_dump((bool) $arr)  bool(false)
 不包含任何成员变量的空对象只在PHP4使用,PHP5中为true  bool(false)
 NULL或者尚未赋值的变量var_dump((bool) NULL)  bool(false)
 从没有任何标记(tags)的XML文档生成的SimpleXML 对象  bool(false)
For other types we can use (bool) or (boolean) for forced conversion eg: (bool)1=true; The following situations default to false during forced conversion: ​
Convert Results
Boolean false var_dump((bool) false) bool(false)
Integer type 0 var_dump((bool) 0); bool(false)
Floating point type 0.0 var_dump((bool) 0.0); bool(false)
String ‘0’ var_dump((bool) ‘0’); bool(false)
Empty array $arr=array(); var_dump((bool) $arr) bool(false)
Empty objects that do not contain any member variables are only used in PHP4 and are true in PHP5 bool(false)
NULL or a variable that has not yet been assigned a value var_dump((bool) NULL) bool(false)
SimpleXML object generated from an XML document without any tags bool(false)


The conversion result of string '0.0' is bool(true)
Note: -1 and other non-zero values ​​(whether positive or negative) are true

Integer type integer:
The range of integer type is -2147483647--2147483647. If the value exceeds this value, it will be automatically converted to float type
We can use echo PHP_INT_SZIE to output the word length of integer, which depends on the machine. echo PHP_INT_MAX outputs the maximum value of integer
There is no integer division operation in PHP. If you execute 1/2, it will produce float 0.5. If you want to achieve the integer division effect, you can use (int)(1/2)=0 or round(25/7)=4
Force conversion to integer type (int) or (integer) bool type true is converted to 1, false is converted to 0

Floating point type float:
Value range Maximum value: 1.8e308 I don’t know what the minimum value is? Please let the experts know
The word length of floating point numbers is also related to the machine. It seems that there is no PHP_FLOAT_SIZE. Please let me know how to get the length of floating point numbers

String type string:
4 ways to define strings:
1. Single quotes
2.Double quotes
3.heredoc syntax structure
4.nowdoc syntax structure (after PHP5.3.0)
Single quote
Single quotes define the original string, and everything inside is processed as a string. If the string contains single quotes, you can use escape
Double quotes
Strings defined by double quotes will parse some special characters (n, b) and variables
Instead of converting a variable to a string, you can place it in double quotes:
$num=10;
$str = "$num"; //$str is a string type 10
heredoc syntax structure
The string itself
Identifier
The identifier at the end must be at the beginning of the line, and the definition format of the identifier must also follow the rules defined by PHP. It can only contain numbers, letters, and underscores, and cannot start with a number or underscore
No other characters are allowed on which line of the end identifier. You can add a semicolon after the identifier. There can be no tabs or spaces before and after the semicolon. Otherwise, PHP will not be able to parse the identifier and will continue to search for the identifier. If If it is not found before the end of the file, an error will be generated
A heredoc is a double quote without double quotes, that is, it can contain double quotes without escaping, and it can parse special characters and variables
nowdoc syntax structure
The string itself
Identifier www.2cto.com
The start identifier of nowdoc must be enclosed in single quotes, and the end identifier and other rules are the same as heredoc
nowdoc means single quotes without single quotes. The string contained in nowdoc will be output as is, and the special characters and variables contained in it will not be parsed

If double quotes contain several situations in array variables
//We first define the following array
[php]
1. $arr=array(
2. 'one'=>array(
3. 'name'=>'jiangtong',
4. 'sex'=>'male'
5. ),
6. 'two'=>'zhaohaitao',
7. 'three'=>'fanchangfa'
8. );

The first element in the array above is two-dimensional, and the last two are one-dimensional. When we access one dimension, there are several ways:
[php]
1. echo "$arr[two]"//key has no single quotes
2. echo "$arr['two']"//key has single quotes, which will cause an error. If we change it to echo "{$arr['two']}"; the result can be correctly output
3. echo "{$arr[two]}"//There are double curly braces, but the key does not have single quotes. In this case, PHP will first look for the constant banana, and if so, replace it. Since there is no two constant, an error will occur.
It can be seen that when accessing a one-dimensional array, either the key is not added or the quotation marks are added (considering the third situation). If it is added, it will be enclosed by {}, and it can be omitted at all.
Multidimensional array test
[php]
1. echo "$arr[one][name]"; //The output result is Array[name]. It can be seen that it returns an array and only parses one dimension
2. echo "{$arr['one']['name']}";//The output result is jiangtong
Braces must be used when accessing multi-dimensional arrays, and the key must be enclosed in double quotes

Array type
As mentioned in the string type, it is legal if it is enclosed in curly brackets without adding key quotes. Then PHP will first look for whether there is a constant named key. If there is a constant named key, it will be replaced. If not, it will be generated. A warning that a constant cannot be found is treated as an ordinary string, so it is recommended that you always add single quotes
Convert to an array using (array)type or array(type), but if you convert a value with only one value to an array, you will get an array of one element, and the subscript is 0. Converting NULL to an array will get an empty array
We can change the value of the array when traversing the array. In PHP5.0 and above, we can use references
[php]
1. $arr=array('a','b','c','d','e' );
2. foreach($arr as &$value)
3. {
4. $value=strtoupper($value);
5. echo $value;
6. }//Output result ABCDE

Object object type
To instantiate an object, we use new to add a person class. We can use the following methods

[php]
1. $objPerson=new person();

Coercion (object): If an object is converted into an object, it will not have any changes. For any other value, an object of stdclass will be instantiated. If the value is NULL, an empty object will be instantiated. If When the array is converted into an object, the key of the array will be used as the attribute of the object, and the value will be the attribute value. For other types of values, the member variable named scalar contains the value
[php]
1. $arr=array('one'=>'a','two'=>'b' );
2. $obj=(object)$arr;
3. echo $obj->one //The output result is a;
Note: This is an array of keys. If there is no array of character keys, I don’t know how to access it. If anyone knows, I hope you can tell me, thank you.
For other values ​​
[php]
1. $obj1=(object)'jiang';
2. echo $obj1->scalar;//output result jiang

NULL empty type
null is not case-sensitive. The NULL type has only one value, indicating that a variable has no value. The variable in the following three situations is considered NULL
1. Is assigned a value of NULL
2. Has not been assigned a value yet
3. Being unset();


Excerpted from jt521xlg’s column

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/478264.htmlTechArticlePHP has a total of 8 data types: Type name Type represents value bool Boolean true, false integer Integer -2147483647 -2147483648 string The length of the string string depends on the machine...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools