显示PHP而不进行渲染

时间:2015-03-31 04:05:16

标签: php

在PHP页面中,如何在不呈现PHP文档的情况下编写它?

我想要做的例子:

<?php _e( 'Error msg, please manually add <?php echo "whatever"; ?> to this
file, 'my-text-domain' ); ?>

1 个答案:

答案 0 :(得分:7)

<>个字符替换为&lt;&gt;个字符,以便按字面显示,就像在普通HTML中一样:

<?php _e( 'Error msg, please manually add &lt;?php echo "whatever"; ?&gt; to this file, 'my-text-domain' ); ?>

您也可以调用htmlentities()函数自动执行此操作:

<?php _e( htmlentities('Error msg, please manually add <?php echo "whatever"; ?> to this file, 'my-text-domain') ); ?>