Blogger Information
Blog 7
fans 0
comment 2
visits 5555
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP工作原理以及环境搭建和变量的定义规则——2018年8月22日17:49:56
Hito的博客
Original
517 people have browsed it

1. 手写: 变量的命名规则;

IMG_0174.JPG2. 手写: Web服务器访问原理;

IMG_0176.JPG3. 手写: 创建本地虚拟主机的过程(以你的工具为准)

IMG_0177.JPG2. 编程: 实例演示php中的字符串中的变量解析,特殊字符转义,以及heredoc和 nowdoc语法结构的用法

实例

<?php
// 使用UTF-8编码
header("Content-Type:text/html; charset=utf-8");
$sonName = '吴睿轩' ;
$newsHot1 = "吴宗宪儿子{$sonName}扬言要炸台北市府!\"宪哥\"怒了:直接抓去关";

$newsHot2 = '吴宗宪儿子$sonName扬言要炸台北市府!\"宪哥\"怒了:直接抓去关';
echo "$newsHot1";
echo '<hr>';
echo "$newsHot2";

echo '<hr>';

// heredoc相当于双引号,可以解析内部的变量以及特殊的转义字符;
// nowdoc相当于单引号
echo '<hr>';
echo <<< "HEREDOC"
{$newsHot1}
HEREDOC;

echo <<< 'NOWDOC'
$newsHot1
NOWDOC;
echo '<hr>';
echo <<< 'NOWDOC'
{$newsHot2}
NOWDOC;
?>

运行实例 »

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

QQ截图20180822175251.png


总结:

1变量的命名:

 *      1. 必须用 $ 开始,

 *      2. $ 后必须是字母或下划线,后面可以跟字母数字或下划线,不能有特殊字符

 *      3. 严格区分大小写;

 *      4. 函数是不区分大小写的;

2命名规则:

 *      1. 驼峰法: 第一个单的首字母小写,后面的每个单词的首字母大写

 *      2. 下划线: 每个单词之间用下划线连接

3转义字符\

4 :

heredoc相当于双引号,可以解析内部的变量以及特殊的转义字符;

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