标签: php heredoc
可能重复: In PHP, what does “<<<” represent?
我只是在一些示例文档中查看,我看到了这一点:
$page = <<<CHART <html><head> head code </head><body> body code </body> </html> CHART; return $page;
我只是想知道第一行的含义以及为什么有人会使用它?另外,如果我可以阅读更多内容呢?我假设结束CHART将是“CHART”;因为它在最后和开头一样。
由于