Home >Backend Development >PHP Problem >What are the four major categories of PHP data types?
PHP data type classification
##1.Basic data types
1.1 Integer type$a = 0123; // 八进制数(是以0开头) 83 $a = 0x1A; // 十六进制数 261.2 Decimal type (floating number) includes single precision and double precision1.3 Boolean type (representing true and false)1.4 String
2. Composite data type
2.1 Array2.2 Object3. Special data types
3.1nullRecommended tutorial: PHP video tutorial
The above is the detailed content of What are the four major categories of PHP data types?. For more information, please follow other related articles on the PHP Chinese website!