Blogger Information
Blog 35
fans 2
comment 0
visits 22585
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP基础字符转义--2018年4月1214时
小学僧的博客
Original
612 people have browsed it

以下代码是php中echo 输出中字符和转义字符的示例,

实例

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

$age = '76岁';
$title1 = '物理学家史蒂芬·霍金去世,享年76岁';
$title2 = "物理学家史蒂芬·霍金去世,享年{$age}";

echo $title1;
echo '<br>';
echo $title2;
echo '<hr>';

echo '新闻:\'云计算在金融服务业内的使用率会日益广\'';
echo '<br>';
echo "新闻:\"云计算在金融服务业内的使用率会日益广\"";
echo '<br>';
echo '新闻:"云计算在金融服务业内的使用率会日益广"';
echo '<hr>';

echo 'php中的转义字符是: \\'; 

echo '<br>';

echo '明天会下雨吗? \n 不会的';
echo '<br>';

echo "明天会下雨吗? \n 不会的";
echo '<hr>';

echo nl2br("明天会下雨吗? \n 不会的");

$siteName = 'PHP中文网';
echo '<hr>';

echo "站点名称:{$siteName}";
echo '<br>';

echo "站点名称:{\$siteName}";

echo '<hr>';

$heredoc = <<< HEREDOC
{$siteName}为回馈广大的PHP中文网的支持者,我们将为捐赠者送出相应的P豆(相应比例:1:5,即捐赠一元,将返5个P豆)\n
请在捐赠时务必留下账号或用户ID
HEREDOC;

echo $heredoc;

echo '<hr>';
echo nl2br($heredoc);

$nowdoc = <<< 'NOWDOC'
	<h3>$siteName</h3> \\r\n 'www.php.cn'
NOWDOC;

echo '<hr>';
echo $nowdoc;

运行实例 »

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


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