將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