Blogger Information
Blog 28
fans 0
comment 0
visits 14281
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP入门第一课--2018年4月12日19时上传
泰礴松的博客
Original
437 people have browsed it

今天学习了PHP入门的第一节课,对一些基本的语法进行了初步的学习,有了初步的认识,由于在外出差学习,时间和场地都受到很大限制,不能更好地复习吸收,抓紧时间对一些基本的用法进行了模仿应用。

实例

<meta charset="utf-8">
<?php
header("content-type:text/html;charset= utf-8");
$money = '95亿美元';
$title1 = '阿里$money收购饿了么';
$title2 = "阿里{$money}收购饿了么";
echo $title1;
echo '<br>';
echo $title2;
echo '<hr>';
echo "郭德纲:\"我就喜欢你无耻的样子\"";
echo '<br>';
echo '郭德纲:\'我用单引号一样能显示\'';
echo '<br>';
echo '郭德纲:“我就是要显示”';
echo '<br>';
echo "郭德纲:'引号配合就是遛'";
echo '<hr>';
echo 'php中的转义符:\\';
echo 'php中的特殊转义符:\n';
echo '<br>';
echo "php中的特殊转义符:\n特殊";
echo '<br>';
$siteName = '烟台论坛';
echo "站点名称:{$siteName}";
echo '<br>';
echo '站点名称:{$siteName}';
echo '<br>';
echo "站点名称:{\$siteName}";
echo '<hr>';
echo nl2br("站点名称:\n $siteName");
echo '<hr>';
$heredoc = <<< HEREDOC
$siteName 是烟台本地的一个论坛\n 很多烟台人都访问他~
HEREDOC;
echo $heredoc;
echo '<br>';
echo nl2br("$heredoc");
$nowdoc = <<< 'NOWDOC'
$siteName 你不管用什么变量,我都不给你转义\n \d
NOWDOC;

echo '<hr>';
echo $nowdoc;
?>

运行实例 »

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


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