Blogger Information
Blog 48
fans 2
comment 3
visits 37858
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
4月11日作业—定界符
黑猫警长的博客
Original
500 people have browsed it

实例

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

$year = '2018年';
$title1 = '博鳌亚洲论坛{$year}年会5大看点及开幕式安排';
//双引号包装的字符串可以解析内部的变量名
$title2 = "博鳌亚洲论坛{$year}年会5大看点及开幕式安排";
//单引号原样输出,双引号会将内容解析输出
echo $title1;
echo '<br>';
echo $title2;

echo '<hr/>';

//内外单引号
echo '鲁迅说:\'世上本没有路,死的人多了也就有了路\'';
echo '<br>';
//内外双引号
echo "鲁迅说:\"世上本没有路,死的人多了也就有了路\"";
echo '<br>';

echo '鲁迅说:"世上本没有路,死的人多了也就有了路"';

echo '<hr/>';
echo 'php中的转义字符是:\\';
echo '<br>';
echo 'php中的注释字符是://';

echo '<br>';
//单引号会原样输出,不会解析换行符
echo '明天上课吗?\n 明天周末不上课';

echo '<br>';
//双引号会对特殊字符进行解析
echo "明天上课吗?\n 明天周末不上课";
echo '<br>';
echo '<br>';
echo nl2br("明天上课吗?\n 明天周末不上课");

echo '<hr/>';
$siteName = 'php中文网';
echo "站点名称:{$siteName}";
echo '<br>';
//对$进行转义: \$,就是会原样输出
echo "站点名称:{\$siteName}";

echo '<hr/>';
$heredoc = <<< HEREDOC
{$siteName}致力于打造一站式免费学习平台,誓将"公益"进行到底!\n
这里是PHP爱好者共同的家园,我们热忱欢迎来自全国各地的PHP爱好者~~
HEREDOC;

echo $heredoc;
echo '<hr>';

echo nl2br($heredoc);

echo '<hr/>';




/**
 * nowdoc
 * php5.3+
 * 功能:与单引号创建的字符串基本一致
 * 1. 将内容原样输出,不解析变量和特殊字符
 * 2. 可以直接使用单引号,不需要转义
 */
$nowdoc = <<< 'NOWDOC'
	<h3>$siteName</h3> \r\n 'www.php.cn'
NOWDOC;

echo '<hr>';
echo $nowdoc;

运行实例 »

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

QQ截图20180413104405.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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!