删除除锚标记之外的页面上的所有内容

时间:2013-05-22 14:04:34

标签: php file email

我正在尝试创建一个php程序,允许用户在给定特定页面的情况下批量发送电子邮件用户。我使用file_get_contents()函数通过php加载页面。 该网站有一个名单(我只需要在@ gmail.com上标记)。有很多不必要的内容,我只想看到锚标签。如果您还可以帮助添加电子邮件域

1 个答案:

答案 0 :(得分:1)

您可以使用PHP函数strip_tags($text, '<a>);

除了标记之外,它将删除所有HTML和PHP标记。

例如:

$text = '<b>This is a header</b><br /><span class="text">This is some text</span><a href="#">This is a link</a>';

echo strip_tags($text, '<a>');

// Outputs:
    This is a headerThis is some text<a href="#">This is a link</a>