The data types in the php array are divided into three categories: scalar type, composite type and special type. The eight subcategories are: 1. boolean, Boolean type; 2. integer, integer type; 3. float, Floating point type, also called double; 4. string, string; 5. array, array; 6. object, object; 7. resource, resource type; 8. NULL, empty null.
The operating system for this tutorial: Windows 10 system, PHP8.1.3 version, Dell G3 computer.
PHP’s data types are divided into three major categories and eight subcategories:
1. Scalar type
boolean (Boolean type) : This is the simplest type, with only two values, which can be TRUE/true or FALSE/false, and are not case-sensitive. For details, please see: PHP Boolean type (boolean)
integer (integer) : Integer values can be expressed in decimal, hexadecimal or octal, and can be preceded by optional symbol (- or). Octal represents a number that must be preceded by 0 (zero), and hexadecimal represents a number that must be preceded by 0x. For details, please see: PHP integer data (integer)
float (floating point type, also called double) : For details, please see: PHP floating point type (float)
string(string): Unlike other programming languages, character variables are divided into characters and strings. In PHP, character variables are uniformly used to define characters or strings. For details, please see: PHP string type (string)
2, composite type
array (array) : Array type variable is a Special variable types
object (object): Object is also a special data type. To create an object variable, you generally use the new keyword to obtain it. For details, please see: PHP object Type (object)
3. Special type
resource (resource type) : Resource is a special variable that is saved externally A reference to the resource. Resources are created and used through specialized functions. For details, please see: PHP resource type (resource)
NULL (empty null) : Indicates that a variable has no value. The only possible value of NULl is NULL
Note: PHP is a weakly typed language, its variables have no data type, but the data stored in the variable has a corresponding data type
integer data Type: uses 8 bytes to store, and provides a variety of integer storage methods
$num = 10; // 十进制 $num1 = 0123; // 八进制(83) $num2 = 0x123; // 十六进制(291) $num3 = 0b1101; //二进制(13)
Floating point data type: uses 8 bytes to store, and provides a variety of storage methods
$float_num = 1.23; $float_num1 = 1.23e3; // 1.23乘10的3次方
The way it is stored in memory is: part of the 8 bytes is used to store the exponent, and part of it is used to store significant digits. Sometimes, when it exceeds a certain range, the accuracy will be lost.
String data type
In PHP, all data entered by the user and data defined by the programmer using quotation marks (single quotation marks and double quotation marks) are understood by the system as strings, PHP7 The length of a string is theoretically unlimited
Both single quotes and double quotes can define strings, but they are different from each other:
--Only a small number of escapes can be parsed in single quotes Symbols: \', \
--Double quotes can parse more escape characters: $, \", \n
Double quotes can parse nested characters in strings PHP variables (variables should be separated from other strings, use {})
$a = "你好"; $c = "$a世界"; // $c = "{$a}世界" 常用 echo $c; //输出“你好世界”
String View
You can view the string specified by the subscript $str[1] When the index is a negative number, the subscript character is used as the index direction from back to front
Define the array
Arrays can be defined in many ways in PHP. The common ways are as follows :
-- Use the array keyword to initialize the array
-- Use the array brackets [ ] to initialize the array
// 使用array $arr1 = array(); // 可以不指定元素 $arr2 = array("name", "age");
// 使用[]定义数组 $arr3 = []; $arr4 = ["name", "age"];
Characteristics of arrays
1. Theoretically there is no limit on the number of elements in a PHP array
2. Elements can be dynamically added to a PHP array
3. The value of a PHP array element can be of any data type
4. PHP array subscripts can be pure numbers (index array), pure strings (associative arrays), mixed numbers and strings (mixed arrays)
Type judgment
Determine the data type through system functions: the format of the function starts with is_, followed by the corresponding data type, and the return result is a Boolean type.
Type conversion
Automatic conversion: PHP will automatically convert data of unqualified data types into target type data according to the computing scenario in which the data will participate. This conversion will not change the original data type of the variable
The above is the detailed content of How many data types are there in php array. For more information, please follow other related articles on the PHP Chinese website!

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

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

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

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

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

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

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

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


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

SublimeText3 Chinese version
Chinese version, very easy to use

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.
