An exciting and easy-to-remember summary of PHP variable knowledge (details)

WBOY
Release: 2023-04-10 17:24:01
Original
2000 people have browsed it

This article summarizes the basic summary of PHP variables, including the declaration of PHP variables and the data types of variables. As a learning summary, I hope it will be helpful to everyone!

An exciting and easy-to-remember summary of PHP variable knowledge (details)

1. Declaration and assignment of variables

To declare PHP variables, you must use a dollar sign "$" followed by the variable name. means, and then use "=" to assign a value to this variable. As shown below:

Copy after login

2. Characteristics of variables in PHP

  • must start with $. If variable a is written as $a, $ is not part of the variable name.

  • The first letter of a variable cannot start with a number. Variable names must start with a letter or underscore.

  • Variable names are case-sensitive.

  • Do not use special symbols or Chinese characters for variables._(underscore) is not considered a special symbol.

  • Variable names must have Meaning (variable names like xxx, aaa, ccc)

The correct naming is as follows:

Copy after login

3.echo display variable command

echo is a command commonly used in PHP for output and display functions. You can use it to display any visible characters, for example:

Copy after login

PHP comments

Comments have many functions: marking key points, easy to find, easy to forget after a long time, improve Work efficiency.

//and## represent single-line comments, usually // is used more often.

/* Multi-line comments */ indicates multi-line comments
Examples are as follows:

Copy after login
/* 这里是PHP中文网 吸烟有害身体健康 */
Copy after login

4.PHP variable data type

4.1 Integer type

The integer type is an integer, which can be a positive number or a negative number.

Copy after login

4.2 Boolean type

The Boolean type has only two values:true(true) /false(False)

Copy after login

4.3 String

A string is a continuous sequence of characters. In PHP, there are three ways to define a string:

  • Use single quotes to declare

  • Use double quotes to declare

  • Use character delimiters to declare

Among them, the character delimiter is used when a very large string needs to be entered.

Be careful when declaring with character delimiters:

Write three less than signs (<<<) after the equal sign after the variable, and then < Write characters after ;<< (English uppercase characters are recommended). As in the following example: QWE. Then wrap the line and write any characters you want. After writing,top line. At the beginning of the line, write the characters following <<< and a semicolon.

".$b."
".$c; ?>
Copy after login

The difference between single quotes and double quotes when declaring strings:

  • 1. Double quotes parse variables, single quotes do not parse variables.

  • 2. Insert the variable inside the double quotes. If there are English or Chinese characters behind the variable, it will splice the character and the variable together and treat it as a whole variable. Be sure to separate the variables with special characters, such as spaces.

  • 3. If you insert a variable within double quotes and do not want spaces behind it, you can wrap the variable in braces.

  • 4. Double quotes parse escape characters, single quotes do not parse escape characters. However, single quotes can parse \' and \

  • ## 5. Single quotes are more efficient than double quotes. Use single quotes as much as possible

  • 6 .Double numbers and single quotes can be inserted into each other! ! ! Insert single quotes between double quotes, insert variables between single quotes, and the variable will be parsed.

  • 7. (

    .) points are used to splice strings.

  • 8. Treat the delimiter declaration string as having the same function as double quotes.

Example:

Copy after login

If the double quotes are replaced with single quotes, the output result will be: $a Chinese website, not PHP Chinese website.


Copy after login

Insert a variable within double quotes. If there are English or Chinese characters behind the variable, it will concatenate the character and the variable and treat it as a whole variable.

This can be solved by adding special characters after the variable:

Copy after login

Or if you don’t want to use special characters, you can wrap the variable in braces:


Copy after login

Double quotation marks and single quotes can be interpolated with each other:


Copy after login

Insert a single quote between the double quotes, insert a variable between the single quotes, and the variable will be parsed.

When multiple strings are spliced together, you can use dots (.) to splice the strings.

Copy after login

4.4 Floating point type

Floating point type is also the decimal in mathematics. Valid values range from 1.8E-308 to 1.8E 308. Floating point numbers have higher precision than integer data types.

Copy after login
Recommended learning: "

PHP Video Tutorial"

The above is the detailed content of An exciting and easy-to-remember summary of PHP variable knowledge (details). For more information, please follow other related articles on the PHP Chinese website!

Related labels:
php
source:php.cn
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!