Blogger Information
Blog 59
fans 0
comment 1
visits 48400
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP基础语法,单双引号 HEREDOC NOWDOC——2018年4月12日17时10分
白猫警长的博客
Original
485 people have browsed it

PHP的第一节课,讲得很详细,很容易理解,

实例

<meta charset="utf-8">
<?php
header("Content-type:text/html;charset=utf-8");

// 创建变量 
// 单引号原样输出字符串内容
$php_1 = 'PHP';
// 双引号能解析字符串中的变量,字符串中的变量必须用花括号包装
$title = "{$php_1}是世界上最好的语言"; 

// 输出结果
echo $title;

echo "<hr>";

$xm = '西门';
$lm = "{$xm}大骂:'哪个该死的砸的我,找死!'";

$dia_lm = "<div style=\"font-size: 14px;\"><h1>西门大官人</h1>金莲洗完澡后,打开窗户,一个不小心,竹竿砸在了{$xm}大官人头上,\n {$lm} \n金莲:“老娘砸的你,怎地,有种的你上来!” \n西门:大怒,上了潘金莲的阁楼, \n西门:\"我上来了,怎么了?\"\n金莲:“大官人既然有种就借给奴家一些呗!” \n西门:。。。</div>";

echo nl2br($dia_lm);

echo "<hr>";

// heredoc能自动解析其中的变量与特殊字符
$her = <<< HEREDOC
<div style="font-size: 14px;"><h1>潘金莲</h1>金莲洗完澡后,打开窗户,一个不小心,竹竿砸在了{$xm}大官人头上,\n{$lm}\n金莲:“老娘砸的你,怎地,有种的你上来!” \n西门:大怒,上了潘金莲的阁楼, \n西门:"我上来了,怎么了?"\n金莲:“大官人既然有种就借给奴家一些呗!” \n西门:。。。
HEREDOC;

echo nl2br($her);


?>

运行实例 »

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

执行后的效果图:

1.png

Correction status:qualified

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