在PHP页面中,如何在不呈现PHP文档的情况下编写它?
我想要做的例子:
<?php _e( 'Error msg, please manually add <?php echo "whatever"; ?> to this
file, 'my-text-domain' ); ?>
答案 0 :(得分:7)
将<
和>
个字符替换为<
和>
个字符,以便按字面显示,就像在普通HTML中一样:
<?php _e( 'Error msg, please manually add <?php echo "whatever"; ?> to this file, 'my-text-domain' ); ?>
您也可以调用htmlentities()
函数自动执行此操作:
<?php _e( htmlentities('Error msg, please manually add <?php echo "whatever"; ?> to this file, 'my-text-domain') ); ?>