我想将变量 $all 放在 $code 的中间,这是我从另一个文件中收集的 HTML 代码。我现在的代码是这样的。
ob_start();
---code here---
$all = ob_get_clean();
$code = file_get_contents("file.txt");
echo $code;
file.txt 看起来有点像这样。
<html>
<head>
<title>Title</title>
</head>
<body>
---HTML code here---
$all
---More HTML code---
</body>
</html>
我应该怎么做才能在我回显 $code 时,在其中呈现 $all?