Blogger Information
Blog 40
fans 3
comment 0
visits 48214
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP基础环境搭建,PHP基础总结,第九期线上班20191112
MArtian
Original
580 people have browsed it

Php语言是通用的,免费开源的,运行在服务器端的脚本语言。

通用:指跨平台,如Windows,Linux,MacOS  
脚本语言:与JS一样,也是解释型语言,按编写顺序执行

PHP标签与echo输出

    1. 包含php脚本语言的文件是".php"扩展名

    2. 在PHP与HTML混编中,需要将PHP语言全部放在标签中才能被解释

    3. PHP每行代码必须以";"结束

    4. echo 输出文本或变量

echo "hello world";echo $val;

变量与常量

变量

    1. 变量声明要使用 "$" 符号 + 变量名(变量名不能数字,中间不能有空格)

    2. 在引号中调用变量,在变量前需要加"$"符号

    3. $val = "Hello World";

    4.变量命名规则

    小驼峰,单词首字母小写,后面单词首字母大写

 myName,phpCn,iPhone

    大驼峰,所有单词首字母大写

 MyName,PhpCn,IPhone

    下划线命名,单词与单词之间使用"_"分割

 my_name,php_cn,i_phone

常量

    1. 常量一旦声明,不可更改

    2. 常量的声明使用define("常量名","值")

    3. 常量声明中的常量名要写在引号中,并且常量名全部大写

 define("WEB_ADDRESS","www.php.cn")

常量不能在引号中调用,常量可以在引号外使用连接符"."后接常量

 echo "php中文网的网址是".WEB_ADDRESS;

引号与单引号

引号与单引号的区别是,双引号可以引用变量,单引号内所有内容都当做字符串输出。

双引号

$val = VALUE;echo "你好,$val";//结果 你好,VALUE

单引号

$val = VALUE;echo '你好,$val';//结果 你好,$val

PHP注释

# php中的单行注释  // php中的单行注释  /* php中的多行注释 */

在PHP语言与HTML,JS混编的时候,注释要写在<?PHP … ?>标签中。


PHP转义

引号中如果要输出引号,要使用转义。

echo "\"你好啊\"";//输出 "你好啊"

PHP环境配置

res2.pngres1.png


1.jpg

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