Blogger Information
Blog 27
fans 1
comment 2
visits 25180
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
初始PHP,感觉很好玩。(2018年4月12日17点35分)
一枝黄花
Original
811 people have browsed it

今天第一次接触PHP感觉很兴奋。比之前的教学课程有意思有点。听得很投入。希望自己能学到点东西。

PHP代码效果预览图

QQ截图20180412173024.png

源代码如下:

实例

<?php

$_sex="女";
$name="湘湘";
$age="25";
echo'<h2>做个自我介绍吧</h2>';

echo $name;
echo '<hr>';
echo $_sex;
echo $age;
echo '<hr>';
echo "你们知道湘湘喜欢吃什么吗?答:\"不知道耶\"";
echo'<hr>';
echo nl2br("她现在正在努力的写作业哦\n 你们不要打扰她的思路");
echo "<hr>";
$heredoc=<<<HEREDOC
{$name}从小就是个心地善良的妹子
HEREDOC;
echo $heredoc;
// 因为这个是php文件,所以此处不用结尾标识。

运行实例 »

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


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