替换属性<a> tag</a>

时间:2011-11-25 13:33:38

标签: php html

  

可能重复:
  Get content within a html tag using php and replace it after processing

我想要替换

<a href="#" alt="" title="" class=""....>blalablabla</a>

with:blalablabla

1 个答案:

答案 0 :(得分:3)

您应该使用strip_tags()功能

http://php.net/manual/en/function.strip-tags.php

以下是示例。

$sHTML = '<a href="#" alt="" title="" class=""....>blalablabla</a>';
$sStripped = strip_tags($sHTML);
echo $sStripped; // should echo "blalablabla"