Blogger Information
Blog 12
fans 0
comment 0
visits 10310
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
php基础 关于php变量的那些事
阿杜的博客
Original
733 people have browsed it

本节课讲解了web服务器访问原理、php变量的命名规则、php变量在字符串中的解析、特殊字符的转义以及heredoc和nowdoc语法结构和用法...
手写作业截图:

aa.jpg

编程题:实例演示php中的字符串中的变量解析,特殊字符转义,以及heredoc和 nowdoc语法结构的用法

实例

<?php

$str='string';
echo "abcd\\";//双引号中输出 \ 需要通过转义符\ 输出\  结果:abcd\
echo 'abcd\\'; //单引号中输出 \,一样需要通过转义符\ 来转义输出,结果同上
echo "<br>";
echo "abcdefg{$str}''";

echo '\t';  //单引号中不能解析转义字符
echo "\t\t123"; //双引号中可以解析特殊转义字符
echo '<br>222222'; //单引号中的html标签不需要解析就可以直接输出,速度应该比双引号快

//heredoc解析变量
echo  <<< "HEREDOC"
{$str} \n  \r \t ddddd
HEREDOC;

//nowdoc不解析变量
echo <<< 'NOWDOC'
{$str} \n  \r \t
<h3><a href="">Hello 同学们晚上好呀</a></h3>
NOWDOC;

运行实例 »

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


Correction status:qualified

Teacher's comments:注意:heredoc和nowdoc与前面的<<<之间尽量不要留空格
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