我正在尝试从字符串中删除所有标记并将其显示给用户 我的字符串是:
$abc='<ol><li>nice products </li></ol>';
echo html_entity_decode($abc);
echo htmlspecialchars_decode($abc);
但它并没有删除这些标签。任何人都建议我应该使用它 我目前正在使用php 5.6版
答案 0 :(得分:2)
if you want to remove all html tags use strip_tags()
function:
$abc = '<ol><li>nice products </li></ol>';
echo strip_tags($abc);
答案 1 :(得分:0)
strip_tags()可以解决您的问题。
它正在http://sandbox.onlinephpfunctions.com/中工作。就像你说的PHP 5.6 环境。 复制你的字符串
$abc='<ol><li>nice products </li></ol>';
echo strip_tags($abc);
结果是:好产品