Posted by Arjen on 02/22/07 08:24
Tony schreef:
> I have a content management system that has links within the content
> field in the database and I need to verify if those links are correct.
> What I need to have happen is have a php script query the database and
> then parse through the content field to find all the <a href> tags to
> get the href attribute value and the link text.
>
> Does anyone have a way of doing this or a regex to do this?
>
preg_match_all ("/a[\s]+[^>]*?href[\s]?=[\s\"\']+".
"(.*?)[\"\']+.*?>"."([^<]+|.*?)?<\/a>/",
$html, &$matches);
--
Arjen
http://www.hondenpage.com - Mijn site over honden
Navigation:
[Reply to this message]
|