Blogger Information
Blog 87
fans 0
comment 0
visits 59545
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
4月11日作业:5 字串符的基本了解
黄忠倚的博客
Original
670 people have browsed it

实例

<?php
/医院
 * 定界符:单引号,双引号
 * 1.单引号:内容原样输出
 */
//创建变量
$hongmao = '鸿茅药酒';
$title = '谭秦东披露鸿茅药酒的安全问题,被内蒙古警方跨省逮捕';

//双引号做定界符来报装字符串
//hongmao谭秦东披露鸿茅药酒的安全问题
$title2 = "谭秦东披露{$hongmao},被内蒙古警方跨省逮捕";

echo $hongmao, '<hr>',$title2;
echo '<hr>';
//特殊字符:如何在字符串中输出定界符?转义:\
echo '<hr>';
echo '周星驰:\'根本就没有什么食神,或者说,人人都是食神。[食神] \'';
echo '<hr>';
echo "周星驰:\"根本就没有什么食神,或者说,人人都是食神。[食神] \"";
//特殊字符:\n
echo '<hr>';
//单引号不会解析特殊字符,只会原样输出
// echo '小明:明天会下雨吗?\n 不会的';
// \n在页面中解析行为空格,只有在源码中才有换行
// nl2br{string}将字符串中的\n解析行为<br>
echo nl2br("小明:明天会下雨吗?\n 小芳:不会的!");
echo '<hr color="red">';
echo $title2 = "谭秦东{\n$hongmao},被内蒙古警方跨省逮捕";


//heredoc,nowdoc
/医院
 * heredoc
 * 功能:与双引号创建字符串是一样的,解析变量与特殊字符
 * 内容的双引号不需要转义
 */
$siteName = 'PHP中文网';
$heredoc = <<< HEREDOC
{$siteName}致力打造一站式的免费学习平台,将“公益”进行到底额!
这是PHP爱好者共同的家园!
HEREDOC;
echo nl2br($heredoc);

/医院
 * nowdoc:对应着单引号功能:原样输出,单引号也不用转义
 * php5.3+
 */
echo '<hr color="blue">';
$nowdoc = <<< 'NOWDOC'
<h2>$siteName</h2> \r\n 'www.php.cn'
NOWDOC;
echo $nowdoc;

运行实例 »

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


Correction status:Uncorrected

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