Blogger Information
Blog 17
fans 0
comment 0
visits 10031
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
php环境搭配、变量命名规则、字符串变量解析20180821
NiceLiving的博客
Original
782 people have browsed it

1、变量的命名规则及Web服务器访问原理:

变量命名规则及web服务器访问原理.png

2、创建本地虚拟主机的过程:

本地创建虚拟主机的过程.png

3、

实例  变量解析、特殊字符转义、heredoc、nowdoc用法

<?php 

//字符串
//字符串的拼接符: a  . . b
$money='95亿美元';

//单引号中使用 .变量.  拼接的方法 
// 单引号中输出 '  必须使用 \' 进行转义
$title='阿里巴巴'.$money.'收购了\'饿了么\'';

//双引号中使用  {变量} 的方法直接引用 
//在双引号中输出"  必须使用 \"  进行转义

// \n 换行符  必须在双引号中使用有效
$title1="阿\n里{$money}收购了\"饿了么\"";
echo $title,'<br>',$title1 ,'<br>';	
//nl2br函数 输出带\n换行格式的页面
echo nl2br($title1);
echo '<hr>';
//heredoc   值什么也不加  heredoc
//等价于使用双引号的字符串,可以解析内部的变量和转义特殊字符
echo <<<heredoc
{$title1}  \n \r \t  
heredoc;
echo '<hr>';

//nowdoc  值必须使用''包括: '值' 
//相当于使用单引号包装的字符串,不能解析内部的变量或者转义特殊字符
echo <<<'nowdoc'
//{$title1}  \n \r \t  不能解析
<h3><a href="">HELLO,大家好</a></h3>
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