Blogger Information
Blog 30
fans 0
comment 0
visits 22470
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
8.21php前奏
归宿的博客
Original
535 people have browsed it

php:

一.变量的命名规则:

    1.$开头,后面紧跟字母或者下划线;

     2.不能以数字开头;不能有特殊符合;

     推荐使用驼峰命名法;就是字母的首字母大写.

二.web服务器访问原理:

    浏览器所展示的内容都是通过html标签呈现的,而web服务器原理是浏览器提起请求,给web服务器,服务器通过php语言解析成html代码,返回给浏览器显示内容.

三.创建本地虚拟机的过程:

    安装环境,windows为例:工具:phpstudy,安装好lamp环境.启动服务,可以通过本地的域名(localhost)或本地ip(127.0.0.1)访问到网站根目录,也可以本地绑定其他域名,并填写在host地址里,就可以访问本地项目了.

四.php实例

<?php
$str='php中文网';
echo $str;//输出字符串
echo $name="我爱\\'.$str.'";//  我爱\php中文网.
//   \:是转移字符; \n:换行  \r:回车;
// heredoc:类似于双引号,可以解析解析内部变量和转义字符
echo <<< HEREDOE
{$name} \n
HEREDOC;
// nowdoc:类似于单引号,只能解析字符串
echo <<< 'NOWDOC'
php中文网.
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