当我从数据库中提取数据时,有没有人遇到此问题,如下图所示,它在实际的数据库表中看起来很好。
我正在使用wordpress。任何建议都让我头疼。
这些是标签
<pre><!--? if (function_exists('externalGetSociofluidButtonsForCurrentUrl'))
{echo externalGetSociofluidButtonsForCurrentUrl();} ?-->
<!--?php DisplayVotes(get_the_ID()); ?-->
<!--?php MostVotedAllTime(); ?--></pre>
答案 0 :(得分:6)
这只是评论一些PHP代码的一种不好的方式,除非它是HTML引用,原始代码将被发送到客户端。在功能方面:
<pre><?php /* echo "this will not be executed" */ ?></pre>
和
<pre><!--?php echo "this will not be executed" ?--></pre>
都会禁用回显调用,但HTML引用版本会将已注释掉的代码发送到浏览器,而使用/* */
只会发送<pre></pre>
。