Blogger Information
Blog 39
fans 2
comment 2
visits 50605
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP环境搭建与基本语法-2018年8月21号
fighting的博客
Original
774 people have browsed it

                                                                    PHP环境搭建与基本语法

                                                      时间 :2018年8月21号                       天气:晴 

实例

<?php
/**
 * Created by PhpStorm.
 * User: 陈坚彬
 * Date: 2018/8/23
 * Time: 12:32
 */
header("Content-type:text/html;charset=utf-8");
$date='2018年8月23日';
$string='今天\'$date\'刚完成21号的作业,进度有点慢。' ;
echo $string ;
echo '<hr/>';
$string1="今天{$date}刚完成21号的作业,进度有点慢。";
echo $string1 ;
$string2='今天' .$date.'刚完成21号的作业,进度有点慢。' ;
echo '<hr/>';
echo $string1 ;

//heredoc,等价使用了双引号字符,可以解析内部的变量与转义字符,可以输出多个变量
echo <<<HEREDOC
$string<br>$string1<br>$string1
HEREDOC;
echo '<hr/>';
//;nowdoc等价于单引号字符,可以输出多个HTML代码
echo <<<nowdoc
echo'123';
<h2>nowdoc等价于单引号字符,可以输出多个HTML代码</h2>
<h2>nowdoc等价于单引号字符,可以输出多个HTML代码</h2>
<h2>nowdoc等价于单引号字符,可以输出多个HTML代码</h2>
<h2>nowdoc等价于单引号字符,可以输出多个HTML代码</h2>

nowdoc;

运行实例 »

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

本机运行图:

1.png简答题:

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

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

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

1.jpg1.png

点评:虽说很简单,但是好记忆不如烂笔头。

总结: 

嗯,这节课从环境的搭建在到PHP语言的基础知识过度,虽说自己这些东西都会,但在认真的听老师讲一遍,还是有收获的。如:heredoc与nowdoc的用法及基本注意事项。嗯,加油。

Correction status:qualified

Teacher's comments:注意:nowdoc要加上单引号,否则就成了heredoc了
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