Blogger Information
Blog 23
fans 1
comment 0
visits 19776
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP环境搭建、变量、常量、数组、连接符、数据类型详解-2019年3月18日
蛋糕356的博客
Original
520 people have browsed it
  1. 先从php中文网下载phpstudy,并进行安装,设置好域名并配置好host文件,启动服务;然后在浏览器中访问设置好的域名,如下图1.png2.png3.png


  2. 变量:变量是以$开始,并以字母开头组成的,不以数字开头,如$a、$_b

  3. 常量:常量是以defined定义,不可变的量,如defined('name','张三')

  4. 注释:注释有单行注释//或#开头;多行注释:如/*这是多行注释*/

  5. 运算符:+、-、*、/、%、=、++、--、-=、+=

  6. $a++指的是先显示变量值,然后再加1,等下一次再echo $a的时候就显示加1后的值;++$a指的是先加1然后再显示变量值;

  7. 数据类型:字符型string;布尔型Boolean、整型int、浮点型float,并用var_dump($a)显示数据类型

  8. 数组:以$arry=array()声明数组,使用print_r($arry)显示数组或var_dump()显示数据。

  9. 空NULL:即使一个变量的值为空,也要给其赋值null,否则会报错。

  10. ''与""的区别,''可以显示文本,但是""可以显示变量,建议多使用''号。

  11. for循环、while循环、do  while循环、foreache数组循环

Correction status:Uncorrected

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