php中的子字符串

时间:2011-12-28 10:20:17

标签: php html substring

我有一些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代码..

2 个答案:

答案 0 :(得分:3)

制作本:

echo (substr(strip_tags($mytext), 0, 25));

这会删除所有标签,并显示给定字符串的前25个字符。

示例:http://www.ideone.com/6TgJX

答案 1 :(得分:0)

 substr(strip_tags($mytext), 0, 25)

这将只显示前25个字符而不显示html