Blogger Information
Blog 7
fans 0
comment 0
visits 5837
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP环境搭建以及函数命名和输出
董家大少
Original
486 people have browsed it

PHP环境搭建以及函数命名和输出

PHP环境搭建

对于新手来说,推荐使用PHPStudy的集成环境

可以方便的进行php本地的调试和运行

具体的安装方法请移步https://www.xp.cn进行查看,在此不在做过多解释。

函数命名规则

  1. 必须以$符号开始,否则无效 【必须】
  2. 其函数名不能以数字开头,其中不得存在特殊符号“_”除外 【必须】
  3. 函数名最好使用使用有意义的名称,方便后期维护更改

在函数命名时需注意,函数名严格区分大小写

注释说明

php文本中,注释方法有三种

  1. “#” 开头的单行注释,此不常用,但仍有一定的使用者,与C语言中的注释相似
  2. // 双斜线,代表单行注释
    3.
  1. /*
  2. */

单斜线可注释多行代码

注意:在php文档中,注释不会再浏览器中解析,html中注释会出现在浏览器中

输出打印

序号 指令 描述
1 echo 语言结构, 可查看多个变量
2 print 语言结构,功能与echo类似,区别是有返回值
3 print_r() 函数,以更容易理解的格式打印变量信息,常用于数组
4 var_dump() 函数,可查看一个变量更多信息,如类型
5 var_export() 函数,输出或返回一个变量的字符串表示(源代码)

实际工作中, echovar_dump()基本可以满足大多数需求

细节归纳:

  1. 在文本内容全是php代码时可以省去尾部的 ?>
  2. 在php中任何指令后必须以;结尾
  3. 在函数命名时需注意,函数名严格区分大小写
Correcting teacher:天蓬老师天蓬老师

Correction status:unqualified

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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!