Blogger Information
Blog 9
fans 0
comment 5
visits 10261
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
1117 简述PHP的变量
酒淋后
Original
747 people have browsed it

PHP 变量

一、变量是什么?

变量是临时储存数据的容器,并且是数据复用的手段;

二、变量怎么声明?

a 举例声明一个变量 age,并且讲18赋值给age;

  1. $age=18;
三、PHP中的变量对于大小写是否敏感?

PHP中的变量对于大小写是敏感的,所以在编程中一定要注意变量的大小写!

四、PHP变量的命名规范有什么?
  1. $变量标识符不能以数字开头
  2. 不能有空格
  3. 不能以特殊符号
  4. 可以以字母或者下划线开头
五、PHP变量的数据类型有什么?

以下列举常用的数据类型:

变量的数据类型 英文
整型 int
浮点型 float
布尔型 bool
数组型 array
字符串型 string
六、PHP 变量的赋值方式有什么?

1、传值赋值:
将原变量的值复制出一份新的内存空间地址给另一个变量,修改两个变量的值 互不影响;

代码举例:

  1. $a=100;
  2. $b=$a;
  3. echo $b,'<br>';
  4. $a=999;
  5. echo $b,'<br>';

输出结果为:
100
100

2、引用赋值:
当一个原始变量使用“引用赋值”方法赋值给新的变量时,原变量的值改变时,新变量的值也跟着改变; 原变量赋值给新变量的时候,在原变量前面加上&符号;

代码举例:

  1. $price=520;
  2. $price1=&$price;
  3. echo $price1.'<br>';
  4. $price=1314
  5. echo $pricel .'<br>';

输出结果:

  1. 520
  2. 1314
Correcting teacher:灭绝师太灭绝师太

Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
2 comments
酒淋后 2020-12-08 13:18:44
谢谢老师鼓励,突然好带劲,感觉写作业来劲了
2 floor
灭绝师太 2020-12-07 17:47:30
鼓励鼓励 ,特别鼓励,非常鼓励,阿酒快跟上队伍~
1 floor
Author's latest blog post