gpt4 book ai didi

php - 在不渲染的情况下显示 PHP

转载 作者:行者123 更新时间:2023-12-02 15:28:07 24 4
gpt4 key购买 nike

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

我正在尝试做的事情的例子:

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

最佳答案

替换<>带有 &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') ); ?>

关于php - 在不渲染的情况下显示 PHP,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29360420/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com