preg_match_all issue, need some help
- From: dysfunct <DysfunctY2K@xxxxxxxxx>
- Date: Wed, 27 Feb 2008 17:33:59 -0800 (PST)
I'm running a script that at one point will collect <img> tags from
some html. I've been using the following:
preg_match_all("/<img .*?>/",$html,$images);
and I thought it was working well. However, I've notice that some
things i throw at it don't work properly. It seems to be that and
image tag closing itself with "/>" doesn't work, ie <img src=".....
" /
. I'm guessing the "/" character is delimiting the regex somehow.
Admittedly I know very little about regular expressions. Anyone know
whats going on and the best way to get all the image tags? I ideally
would like the whole thing, from the <img to the final closing bracket
.
- Follow-Ups:
- Re: preg_match_all issue, need some help
- From: Hoss
- Re: preg_match_all issue, need some help
- Prev by Date: Re: How would I get a list of all files matching a pattern?
- Next by Date: Re: preg_match_all issue, need some help
- Previous by thread: How would I get a list of all files matching a pattern?
- Next by thread: Re: preg_match_all issue, need some help
- Index(es):
Relevant Pages
|