Blogger Information
Blog 67
fans 0
comment 2
visits 71987
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP数据类型
搁浅
Original
588 people have browsed it

变量

变量就是赋值
  1. $a=10; //10赋值给 $a ,$符号就是变量,变量区分大小写。
  2. echo "$a"; //输出10,双引号就是输出变量,添加单引号就会输出$a;
  3. echo $a; //当只有变量的时候不要双引号也可以输出。

变量名写法

用下面写法命名,变得更容易读懂代码。
  1. $user_name//下划线写法
  2. $userName//小驼峰写法,第二个单词首字母大写
  3. $UserName//大驼峰写法,所有单词首字母大写

布尔值

ture真,false假
  1. $a=true; //ture等于真
  2. echo "$a"; //输出1
  3. $a=false; //false等于假
  4. echo "$a"; //输出0,0就是null,null就是空没有的意思。

特殊类型null

  1. $a=null; //null等于空,没有。
  2. echo "$a"; //什么都不输出

int类型

就是整数类型,后面没有小数
  1. $a=11;
  2. echo "$a"; //输出11

float浮点型

后面有小数点的类型
  1. $a=11.5;
  2. echo "$a"; //输出11.5

strings字符串类型

所有的英文中文数字,两边加上’’单引号就是字符串
  1. $a='abc大家好11.5';
  2. echo "$a"; //输出abc大家好11.5

数组类型

  1. $a=array(1,3,5,6);
  2. $a=[1,3,5,6]; //这种为简写
  3. echo "$a[0]"; //输出1,数组重0开始计数。

class对象类型

  1. class pig(){
  2. }
  3. $a=new pig;//这里就创建了一个pig对象
Correcting teacher:PHPzPHPz

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
0 comments
Author's latest blog post