Blogger Information
Blog 60
fans 0
comment 1
visits 37614
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
4月11日 PHP基础
威灵仙的博客
Original
425 people have browsed it

实例

<meta charset=utf-8>

<?php
header("Content-type:text/html;charset=utf-8");
$money='5元钱';
$title1='我用$money买了一瓶饮料';
echo $title1;
echo '<hr>';
$title2="我用{$money}买了一瓶饮料";
echo $title2;
echo "<hr>";
echo '小树:\'视频剪辑好了\'';
echo '<hr>';
echo "小树:\"视频剪辑好了\"";
echo '<hr>';
echo '小树:"视频剪辑好了"';
echo '<hr>';
echo  "视频剪辑好了没 \n  没有完成";
echo '<hr>';
echo  nl2br("视频剪辑好了没 \n  没有完成");
echo '<hr>';
$siteName = 'PHP中文网';
echo "站点名称{$siteName}";
echo "<hr>";
echo "站点名称{\$siteName}";
echo '<hr>';
$heredoc=<<<HEREDOC
站点名称{$siteName}力于打造一站式免费学习平台,誓将"公益"进行到底!\n
这里是PHP爱好者共同的家园,我们热忱欢迎来自全国各地的PHP爱好者~~
HEREDOC;
echo $heredoc;
echo '<hr>';
echo nl2br($heredoc);
echo '<hr>';
$nowdoc = <<< 'NOWDOC'
    <h3>$siteName</h3> \r\n 'www.php.cn'
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