我有这样的内容:
在一切都由游戏决定的世界里,Disboard。
我想删除 Disboard 中的超链接,我正在使用strip_tags()
,但它无效。
这是我的代码:
<?php custom_echo (html_entity_decode(strip_tags($value['konten'],'')), 660); ?>
答案 0 :(得分:1)
$str = 'In the world where everything is decided by games,<a
href="www.google.com">Hyperlink</a>';
$str = htmlspecialchars ($str);
echo html_entity_decode(strip_tags( $str ));
如果$ str中的字符串转换了html字符(就像这里一样),strip_tags就不能删除它们。
试
echo strip_tags( html_entity_decode( $str ));