我有一个功能
myfunc(){
?>
<h1>Title</h1>
<div class="container">
<?php if (condition): ?>
<div class="something">more data</div>
<?php endif; ?>
</div>
<?php
}
这个函数有更多的HTML内容与php if语句结合在一起
现在,我想将html内容存储到一个变量中,以便我以后可以使用它...现在它只是显示函数的内容,这不是我想要的
答案 0 :(得分:0)
看一下php heredoc和nowdoc
它可能会有所帮助
http://php.net/manual/en/language.types.string.php#language.types.string.syntax.nowdoc