奇怪的 原文
当我从数据库中提取数据时,有人遇到过这个问题吗?如下所示,在实际的数据库表中看起来很好。
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这只是注释掉某些 PHP 代码的一种不好的方式,除非它是 HTML 引用,所以原始代码将被发送到客户端。从功能上来说:
和
都禁用 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:
and
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>
.