为什么'a'转换为

时间:2013-07-09 11:35:56

标签: php html wordpress

我有问题。我使用wordpress从昨天开始不工作链接 在数据库中我有代码:

<a href="dakjhd">text</a>

但在wordpress的文本编辑器中我有

&nbsp text &nbsp

我不知道为什么转换为&amp; nbsp

现在我无法添加链接...

请帮忙

步骤:

  1. 添加指向我文字的链接
  2. 我在数据库中检查了这个文字,然后看到<a href="dakjhd">text</a>
  3. 我在文本编辑器中检查了这个文字,然后看到&nbsp text &nbsp
  4. 我不知道。

1 个答案:

答案 0 :(得分:0)

您的代码可能正在使用strip_tags()从实际HTML中删除代码。您可以使用html_entity_decode将其恢复为原始格式。

示例:

<?php

$link = '<a href="dakjhd">text</a>';

$a = strip_tags($link);
$b = htmlentities($link);
$c = html_entity_decode($b);

echo $a; // output: text
echo $b; //output: <a href="dakjhd">text</a>
echo $c; //output: the actual link

?>

希望能够清除你的怀疑!