是否可以使用 ob_get_contents 但保留 php balise?
代码:
<?php ob_start(); ?>
<?php echo 'asdfasdf'; ?>
<?php
$content = ob_get_contents();
ob_end_clean();
?>
结果:
<?php echo 'asdfasdf'; ?>
是否可以使用 ob_get_contents 但保留 php balise?
代码:
<?php ob_start(); ?>
<?php echo 'asdfasdf'; ?>
<?php
$content = ob_get_contents();
ob_end_clean();
?>
结果:
<?php echo 'asdfasdf'; ?>