Blogger Information
Blog 48
fans 0
comment 0
visits 36788
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
php环境配置和php变量2018.08.21
雨天的博客
Original
583 people have browsed it

实例

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<?php
$siteName='天津瓷房子';
echo $siteName.'<br>';
$title=$siteName.'位于天津市和平区\'赤峰道72号\'';
echo $title.'<br>';
$desc="{$siteName}是一幢举世无双的建筑,它的前身是历经百年的法式老洋楼,它的今生是极尽奢华的'瓷美楼奇'";
echo $desc;
echo '<hr>';
//heredoc 等价使用了双引号字符串,可以解析内部的变量和转义特殊字符
$heredoc=<<<aaa
        $title
        aaa;
        echo $heredoc.'<br>';
//nowdoc 相当于用单引号包装的字符串
echo <<<'nowdoc'
<h3 style="color:pink;">2007年9月3日,瓷房子正式对外开放,马上成为天津市的地标建筑。</h3>
nowdoc;
?>
</body>
</html>

运行实例 »

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


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