如何在PHP

时间:2015-07-31 18:02:33

标签: php

我在一本书中读到这些东西来显示文字。 您可以使用语法echo<< here document显示文本。 这是我的代码:

<html>
    <head> </head>      
    <body>
        <h1> Here's what PHP has to say...</h1>
        <br />
<?php 
    echo <<<END
    This is example use of HERE document syntax to display all the text untill the ending token is reached END;
    ?>

    </body>
</html>

但是在运行此文件后,它会出错:

  

(!)解析错误:语法错误,意外结束文件,期望变量(T_VARIABLE)或heredoc结束(T_END_HEREDOC)或$ {(T_DOLLAR_OPEN_CURLY_BRACES)或{$(T_CURLY_OPEN)在C:\ wamp \ www \ PHPpractice \第12行的phphere.php

那么我的错误是什么或如何运行这个...... ??

1 个答案:

答案 0 :(得分:2)

应保留END的对齐方式。像这样的东西

echo <<<END
    This is example use of HERE document syntax to display all the text untill the ending token is reached 
END;