Blogger Information
Blog 45
fans 2
comment 1
visits 26464
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
2018年4月11号21:30分
哈的博客
Original
518 people have browsed it

总结:

今天学习php知识;知识点老师都一一列出来了,需要我去记住

1定界符:单引号 双引号

2特殊字符。单引转义 \\ 和\n

3headoc, nowdoc 与双引号创建字符串是一样的,解析变量与特殊字符

设是老师说的总点

实例

<?php
// 定界符:单引号 双引号
// 单引号
$title = '客服电话';
echo $title;
//双引号
$nane ="$title 030303030";
echo $nane;
$nane ="{$title} 030303030";

echo '<hr>';
//特殊字符。单引转义
echo '老师说:'站起来'';
//代码转义
echo '老师说:\'站起来\'';
echo '<hr>';

//特殊字符。双引转义 
echo "老师说:\"站起来\"";

echo '<hr>';

//特殊字符:\n
//单引号不会解析特殊字符,原样输出
//echo '看起来很好吃 \n 好吃吗?';
//\n在页面解析空格,在源码中才会换行
//nl2br(string)将字符串中的\n解析为<br>
echo nl2br('看起来很好吃 \n 好吃吗?');
echo '<hr>';
echo $nane="{\$title} 030303030";

echo '<hr>';
//headoc, nowdoc
//功能:与双引号创建字符串是一样的,解析变量与特殊字符
//内部的双引号不需要转义
$_sex='标题'
$headoc = <<<site
{$_sex}白天鹅啊白天鹅,脖颈弯弯,\n向天欢叫,洁白的羽毛,漂浮在碧绿水面;\n"红红的脚掌","拨动着清清水波"。
site;
echo nl2br($headoc);

echo '<hr>';
$siteName='哈哈哈'
$nowdoc = <<<aaa
{$siteName}白天鹅啊白天鹅,脖颈弯弯,\n向天欢叫,洁白的羽毛,漂浮在碧绿水面;\n"红红的脚掌","拨动着清清水波"。
aaa;
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