Blogger Information
Blog 14
fans 0
comment 0
visits 9972
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
变量命名规则&变量解析 2018年8月21日作业
笨笨的博客
Original
1307 people have browsed it

今晚正式开始php课程,主要讲了php本地开发环境的搭建、web服务器的访问原理、变量的命名规则以及变量解析等内容

1、变量的命名规则

a、变量名必须以$开头

b、$后的第一个字母必须是字母或者下划线,不能为数字。后面的字母可以为数字。不能有特殊字符

c、变量名严格区分大小写

2、常用的变量命名规范

a、驼峰命名法   例如:$myName = 'changhu';

b、下划线发      例如:$my_name = 'changhu';  这种方法一般用在数据库连接里

3、创建本地虚拟机的过程(以php工具箱为例)

a、在www目录下新建一个文件夹,命名为test

b、点击php工具箱里的Mysql管理器下的站点域名管理,打开站点域名管理器

c、在网站域名处填写:www.test.com  目录选择www下的test目录  第二域名填写 test.com  端口写80

d、点击新增按钮,然后点保存配置并生成配置文件

e、点击其他选项菜单下的打开hosts

f、在hosts文件里添加 127.0.0.1   www.test.com 然后保存hosts文件即可

4、php字符串中的变量解析


实例

<?php

$name = 'php中文网';

echo '我爱'.$name;  //php中字符串连接用.

echo '<br>';

echo "我爱{$name}";   //php中双引号内可以解析变量,单引号不能解析变量。双引号里的变量最好用花括号作为定界符

echo '<br/>';

echo '\'我\'爱'.$name.'<br>';   //php中,如果要显示特殊字符,需要用\转义

//HEREDOC  等价于使用双引号的字符串,可以解析内部的变量和转义特殊字符
echo  <<< "HEREDOC"
{$name} \n  \r \t 
HEREDOC;


//NOWDOC等价于使用了单引号的字符串,不能解析变量

echo <<< 'NOWDOC'
${name}
我爱php中文网
NOWDOC;

运行实例 »

点击 "运行实例" 按钮查看在线实例


Correction status:qualified

Teacher's comments:注意:heredoc和nowdoc与前面的<<<之间尽量不要留空格
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