Blogger Information
Blog 39
fans 0
comment 0
visits 30869
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
WEB服务器数据传输原理,本地web服务器暨虚拟主机的创建流程,php编程语言的基本语法 2018年8月21日 22:23
南通税企通马主任的博客
Original
636 people have browsed it

一、手写WEB服务工作原理和用PHP工具箱搭建虚拟主机(服务器)

1.jpg


二、php编程中变量的命名规则

2.jpg


三、php编程实例演示字符串中的变量解析、特殊字符转义以及HEREDOC和NOWDOC语法结构用法

实例

<?php
echo '<meta charset="utf-8">';

echo "hello,my dear";

echo '<h3>PHP中文网</h3>';

echo '<nav>导航</nav>';

$ArtName = 'PHP中文网';
echo $ArtName;

echo '<hr>';

$artName = 'www.php.cn';
echo $artName;

echo '<hr>';

$art_Name = '同学们,中秋节快乐!';
echo $art_Name;

echo '<hr>','<br>';

$money = '38.9元';
$title = '我在大润发花了'.$money.'买了瓶\'飘柔\'';
$title1 = "我\n在大润发花了{$money}买了瓶\\\"飘柔\\\"";
echo $title,'<br>',$title1,'<br>';
echo nl2br($title1);

echo '<hr>','<br>';

echo <<<HEREDOC
{$title} \n  \r \t ,<br><br>
HEREDOC;

echo <<<'NOWDOC'
{$title1}
<h3><a href="">同学们,中秋节礼物发放入口来了</a></h3>
NOWDOC;
?>

运行实例 »

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

小结:练习了半天,稍微摸到一些门道了,可以把自己要的变量全部编写出来,然后一起调用出结果!就看脑容量到底有多大了!!

Correction status:qualified

Teacher's comments:注意:heredoc和nowdoc跟前面的<<<中间不要留空格!你这里的nowdoc是必须得加上单引号的,heredoc可以不用双引号,但是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