当我从数据库中提取数据时,有人遇到过这个问题吗?如下所示,在实际的数据库表中看起来很好。

我正在使用 wordpress。任何建议都让我摸不着头脑。

这些是标签

<pre><!--? if (function_exists('externalGetSociofluidButtonsForCurrentUrl'))
                {echo externalGetSociofluidButtonsForCurrentUrl();} ?-->
<!--?php DisplayVotes(get_the_ID()); ?-->
<!--?php MostVotedAllTime(); ?--></pre>

Has anyone had this issue when i pull data out from the database it looks like below, it looks fine in the actually database table.

I am using wordpress. Any suggestion scratching my head.

these are the tags

<pre><!--? if (function_exists('externalGetSociofluidButtonsForCurrentUrl'))
                {echo externalGetSociofluidButtonsForCurrentUrl();} ?-->
<!--?php DisplayVotes(get_the_ID()); ?-->
<!--?php MostVotedAllTime(); ?--></pre>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

笙痞 2024-11-18 03:48:03

这只是注释掉某些 PHP 代码的一种不好的方式,除非它是 HTML 引用,所以原始代码将被发送到客户端。从功能上来说:

<pre><?php /* echo "this will not be executed" */ ?></pre>

<pre><!--?php echo "this will not be executed" ?--></pre>

都禁用 echo 调用,但 HTML 引用版本会将注释掉的代码发送到浏览器,而使用 /* */ 只会发送

; 

It's just a bad way of commenting out some PHP code, except since it's an HTML quote, the raw code will be sent to the client. In functional terms:

<pre><?php /* echo "this will not be executed" */ ?></pre>

and

<pre><!--?php echo "this will not be executed" ?--></pre>

both disable the echo call, but the HTML quote version will send the commented-out code to the browser, whereas using /* */ will just send <pre></pre>.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文