将 PHP 输出捕获到变量中
在出于多种目的生成动态 XML 的场景中,包括用户预览和作为post 变量,将生成的 XML 捕获到变量中可以简化该过程。此方法不需要生成 XML 两次,一次用于预览,一次用于表单值,而是允许生成一次。
考虑以下代码结构:
<code class="php">$lots of = "php"; <xml> <morexml> <?php while(){ ?> <somegeneratedxml> <?php } ?> <lastofthexml> <?php ?> <html> <pre class="brush:php;toolbar:false"> The XML for the user to preview