Seven data types that novices must know when getting started with PHP

爱喝马黛茶的安东尼
Release: 2023-04-08 08:58:01
forward
3131 people have browsed it

Seven data types that novices must know when getting started with PHP

If you want to get started with PHP, you must first learn to set up an environment, and secondly learn basic syntax. The basics of PHP include data types, operators, variables and constants, etc.

In this article, we mainly understand what data types are. Data type refers to a general term for the same type of data, generally described as XX data type.

For example, integers and decimals are both numbers, we will collectively refer to them as numeric data types. In PHP, data types are divided into 7 categories, as shown in the figure:

Seven data types that novices must know when getting started with PHP

Examples of PHP data types are as follows:

Copy after login

In the above example, Add two basic knowledge points: comments and printout. Comments are intended to be notes and have no impact on the program. They are just to facilitate developers to understand the program. The printout is intended to display the results.

There are 2 types of comments in PHP, examples are as follows:

//双斜线用于注释单行 /*这个符号用于注释多行*/
Copy after login

There are 3 types of printouts in PHP, examples are as follows:

Copy after login

Another thing to note is, Every time you write a complete sentence of code, it must end with the English symbol;, otherwise an error will occur.

PHP Chinese website has a large number of freePHP video tutorials, everyone is welcome to learn!

This article is reproduced from: //m.sbmmt.com/course/list/29.html

The above is the detailed content of Seven data types that novices must know when getting started with PHP. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:jianshu.com
Statement of this Website
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!