Blogger Information
Blog 27
fans 2
comment 1
visits 13594
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP对字符串的处理规则 2018-4-11
kaclod的博客
Original
463 people have browsed it

实例

<meta charset="utf-8">
<?php
header("Content-type:text/html;charset=utf-8");
//单引号会将代码原样输出,双引号会将内容解析输出

//创建变量
$money='95美元'
$titlel='花了$money买了面包'
//双引号
$titlel="花了$money买了面包"

//花括号添加定界符
$title2="花了{$money}买了面包"

echo $title1;
echo '<br>';
echo $titile2;


//使用转义字符输出定界符:反斜线,
echo '郭德纲:\'你无耻的样子很有我当年的神韵\'';
// 双引号也是一样的
echo '<br>';
echo "郭德纲:\"你无耻的样子很有我当年的神韵\"";
echo '<br>';
//第二种方案,使用与定界符不同类型的引号:双引号
echo '郭德纲:"你无耻的样子很有我当年的神韵"';

//特殊字符的转移,连写两个自身转义就可以
echo'<br>'
echo 'php中的转义字符是:\\'
//单引号会原样输出,不会解析换行符
echo '明天会下雨吗? \n 不会的';
echo '<br>';
//双引号会对特殊字符进行解析
//在页面中只会看到一个空格,但是在源代码中的确是换行了
echo "明天会下雨吗? \n 不会的";
echo '<hr>';

//关于双引号中的变量会被解析,刚刚说过了,如果不想让变量被解析,怎么做呢?
$siteName = 'PHP中文网';
echo '<hr>';
//双引号中的变量会被解析出来
echo "站点名称{$siteName}";
echo '<br>';
//对$进行转义: \$,就是会原样输出了,不会再解析
echo "站点名称{\$siteName}";

运行实例 »

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


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