Blogger Information
Blog 5
fans 0
comment 0
visits 3465
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP课程第一节:服务器访问原理、本地创建虚拟机;变量定义规则、字符串的创建与变量解析——20180821作业
流火的博客
Original
801 people have browsed it

PHP课程第一节:服务器访问原理、本地创建虚拟机;变量定义规则、字符串的创建与变量解析——20180821作业

1. 手写: 变量的命名规则;
2. 手写: Web服务器访问原理;
3. 手写: 创建本地虚拟主机的过程(以你的工具为准)
微信图片_20180822101217.jpg
微信图片_20180822101223.jpg
2. 编程: 实例演示php中的字符串中的变量解析,特殊字符转义,以

及heredoc和 nowdoc语法结构的用法

实例

<?php
//字符串
//腾讯文档推出4个月,月活用户已突破1600万
//特殊字符前用\
//双引号里\n源码里换行,浏览器输出为空格

$months='4个月';
$money='1600万';
$title1='腾讯文档推出'.$months.' ,月活\'用户\'已突破'.$money.'';
$title2="腾讯\n文档\\推出{$months},月活\"用户\"已突破1600万";

echo $title1,'<br>',$title2,'<hr>';
echo nl2br($title2),'<hr>';

//heredoc
//here 等价于加了双引号的字符中,可以解析内部的变量
echo <<< "HEREDOC"
{$title1} \n \r \t
HEREDOC;

//nowdoc
//相当于用单引号包装的字符串

echo <<< 'NOWDOC'
{$title1} \n \r \t
<h3><a href="">123654</a></h3>
NOWDOC;

运行实例 »

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

QQ图片20180822100925.png

 

Correction status:Uncorrected

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