吐槽here doc

来源:3-9 PHP标量类型—字符串(1)

sever_彬

2015-08-25 10:04

不知道heredoc结构为什么不介绍一下。吐槽。。。   格式$heredoc = <<<heredocs    这里面是字符串内容      heredoc;   echo $heredoc;

写回答 关注

2回答

  • 品茗见南山
    2016-01-05 11:08:26

    $str_string3=<<<EOT

    <h1>我的午餐</h1>

    <font color="blue">半只烤鸡</font>

    <font color="red">一杯酸奶</font>

    <a href="1.html"><font color="yellow">查看更多</font></a>

    EOT;

    echo $str_string3


  • jumperz
    2015-09-18 13:42:45

    支持,少讲了一种。

    品茗见南山

    $str_string3=<<<EOT <h1>我的午餐</h1> <font color="blue">半只烤鸡</font> <font color="red">一杯酸奶</font> <a href="1.html"><font color="yellow">查看更多</font></a> EOT; echo $str_string3 就是这种

    2016-01-05 11:08:46

    共 1 条回复 >

PHP入门篇

PHP入门教程轻松学习,行业大牛帮您快速掌握PHP编程基础知识。

455957 学习 · 6306 问题

查看课程

相似问题