我有一个字符串:
<?
$home = '<ul>
<li>
first line
</li>
// Here I want to write some while loop//
<li>
second line
</li>
</ul>';
// somewhere on the bottom of the page I echo $home
?>
我无法将主变量分开以在它之间包含 while 循环代码,我曾尝试与之分开,'; echo '
但它不起作用。