Blogger Information
Blog 28
fans 0
comment 0
visits 49168
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP小常识—2018年8月21日
益伦的博客
Original
718 people have browsed it

课程:PHP中文网上了第三期的培训(前端部分)

时间:2018年8月21号晚8点

讲师:Peter zhu!

内容:php简介

实例

<?php
// 单行注释
/*
  多行注释
  php, 超文本预处理器
  超文本: html
 php 它的本质就是用来创建html
 */
//
/*
 * 1. php代码必须在服务器执行;
 * 2. php必须要用标签<?php 和 ?>嵌入到html代码中
 * 3. php代码可以出现在html中的任何地方
 * 4. 文件名必须以php结尾,但是如果文档中只有php代码,必须将结束标签删除
 * 5. 输出方式  echo print
 * 6. php显示出来的页面全部都是字符串
 * 7. 单引号不能解析变量,双引号可以,特殊符号如单引号需要正常输出可以用转义字符‘\’
 */

//heredoc
// heredoc 等价使用了双引号的字符中,可以解析内部的变量和转义特殊字符
echo  <<< "HEREDOC"
{$title2} \n  \r \t 
HEREDOC;

// nowdoc
// 相当于用单引号包装的字符串
echo <<< 'NOWDOC'
{$title2} \n  \r \t
<h3><a href="">Hello 同学们晚上好呀</a></h3>
NOWDOC;
echo "<h1 style='color: red'>Hello World</h1>";

print print print "<h1 style='color: red'>Hello World</h1>";

运行实例 »

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


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