Blogger Information
Blog 36
fans 1
comment 0
visits 32474
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
本地web服务器搭建_php变量基础知识_2018年8月21日
宋超的博客
Original
701 people have browsed it

一.通过手写PHP变量命名规则加深对PHP变量命名规则了解和印象。

二.搞清楚WEB服务器的运行原理。

p1.jpg

p2.jpg


php变量实例

<?php
//字符串

$sitename = 'PHP中文网';
$siteurl = 'www.php.cn';
$php1 = '学PHP就上$sitename'.'<br>';
$php2 = "学PHP就上\\\"{$sitename}\\\"".'<hr>';
$php3 = "{$sitename}的网址是:\r\n{$siteurl}";

echo $php1;
echo $php2;
echo $php3,'<br>';
echo nl2br($php3);

echo '<hr>';

//heredoc
// heredoc 等价使用了双引号的字符中,可以解析内部的变量和转义特殊字符
echo  <<< "HEREDOC"
{$php2} \n  \r \t 
<h3><a href="$siteurl">Hello nice to meet you!</a></h3>
HEREDOC;
// nowdoc
// 相当于用单引号包装的字符串
echo <<< 'NOWDOC'
{$php3} \n  \r \t
<h3><a href="$siteurl">Hello nice to meet you!</a></h3>
NOWDOC;

运行实例 »

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

总结:

1.变量命名

php命名需要以美元的$符号开头。

变量名开头不能是数字。

变量名中不允许出现除“_”下划线之外的符号。

php变量对大小写敏感,函数则不区分大小写(但尽可能写的一样)。

常用的命名方法,驼峰命名 变量名单词首字母使用小写。

2.转义符和nowdoc以及heredoc和用法。


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