日期:2014-05-17 浏览次数:20537 次
<?php function a(){ echo "abc"; } ob_start(); a(); $str = ob_get_contents(); ob_end_clean(); echo $str; ?>