将 HTML 转义为 PHP 或使用 Echo?哪个更好?
2022-08-30 11:24:41
在性能方面,什么会更好。使用PHP来回显所有的HTML输出,这样我就可以用各种工作代码和变量来填充它,或者在整个文档中定期将HTML转义为php。
我知道可能会有一些可读性问题,但我并不担心这一点。
谢谢大家!
示例 1
echo '<html>',
'<body>',
'The content of the ',$container,' element is displayed in your ', $other_container,
'</body>',
'</html>';
或
<html>
<body>
The content of the <?php echo $container; ?> element is displayed in your <?php echo $other_container; ?>
</body>
</html>