当前位置: 首页 > 网络学院 > 服务端脚本教程 > PHP > PHP 变量
Variables are used for storing values, such as numbers, strings or function results, so that they can be used many times in a script.
“变量”是用来存储“值”的,如:数字(number)、字符串(string)或者函数结果(function results);它可以在脚本种重复使用。
All variables in PHP start with a $ sign symbol. Variables may contain strings, numbers, or arrays.
所有的PHP变量的前面都包含一个“$”符号。变量可以包含字符串、数字、数组。
Below, the PHP script assigns the string "Hello World" to a variable called $txt:
下面的案例中,我们先给“txt”附一个字符串“Hello World”,然后再显示这个“txt”变量:
<html> <?php </body> |
To concatenate two or more variables together, use the dot (.) operator:
如果你想把两个变量合二为一,你需要使用(.)操作符,具体如下:
<html> <?php </body> |
The output of the script above will be: "Hello World 1234".
上述例子输出的结果是:"Hello World 1234"