Blogger Information
Blog 19
fans 0
comment 0
visits 13257
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP基础
王浩
Original
576 people have browsed it
  1. 作业:
  2. 1.安装phpstudy(可以使用其他集成环境)
  3. 2.对上课内容进行总结

phpstudy安装

小皮面板下载地址:http://www.xp.cn
一直下一步安装完毕。然后启动apache服务,Mysql服务,并安装需要的PHP版本,目前暂定PHP8。
配置虚拟网站。

可以通过左侧的网站设置来添加虚拟域名。

变量的命名:

规则

  1. 由$开头;
  2. 大小写字母,下划线,以及数字组成;
  3. 要有明确的意思,即望文知意
  4. 不能有空格,数字不能开头
  5. 区分大小写,$name和$NAME不是一个变量

命名法

  1. 下划线命名法:

    $app_name = ‘php基础课程’;

  2. 小驼峰命名法:(第一个单词小写,后面的单,每个首字母大写

    $appName = ‘php教程’;

  3. 大驼峰命名法:(所有单词首字母大写)

    $AppName

数据类型

数据类型常用的有:整数(int)、浮点(float)、字符串(string)、布尔(bool)等
可以用var_dump输出对应的数据类型

  1. $n = 12;
  2. var_dump($n);

输出:int(12)

  1. $str = "hello";
  2. var_dump($str);

输出:string(5) “hello”

  1. $price = 19.9;
  2. var_dump($price);

输出:float(19.9)

  1. $isShow = true;
  2. var_dump($isShow);

输出:bool(true)

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