我有一些HTML代码
<p style="color:red;font-size:12px;">This economy car is great value for money and with the added benefit of air conditioning is ideal for couples and small families. A ?500 excess applies which can be waived to NIL for only <b>5.00</b> per day</p>
使用以下方法
substr($mytext,0,25);
和
$s = html_entity_decode($mytext);
$sub = substr($s, 0, 25);
但这两个都不起作用。第一个返回空结果,第二个返回sting包含所有html代码..
答案 0 :(得分:3)
制作本:
echo (substr(strip_tags($mytext), 0, 25));
这会删除所有标签,并显示给定字符串的前25个字符。
答案 1 :(得分:0)
substr(strip_tags($mytext), 0, 25)
这将只显示前25个字符而不显示html