PHP heredoc 用法2
参考网上的一个heredoc php模板实现的简单代码:index.php文件: |
<?php
function template($template,$EXT ='htm')
{
$path = "$template.$EXT";
return $path;
}
$title = "this is title";
$content = "heredoc";
include template('index')
?>
index.htm 文件; |
<!-- <?php print<<<EOT
-->
<html>
<head><title>$title</title></head>
<body>
$content;
</body>
</html>
<!--
EOT;
?>-->
【推荐】还在用 ECharts 开发大屏?试试这款永久免费的开源 BI 工具!
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步