php 正则获取html属性值

个人不会写正则,但是工作中遇到了又没办法,所以记录下以后再遇到就好找了,呵呵
言归正传,下面是用正则匹配img的属性的方法:

1.匹配 “img” 中的 “src” 属性
[php]
$str='<img src="http://www.z1988.com/images/a.jpg" aid="123456">';
preg_match_all("/\<img.*?src\=\"(.*?)\"[^>]*>/i", $str, $match);
print_r($match);
[/php]

2.匹配 “img”中的 “aid” 属性
[php]
$str = '<img src="http://www.z1988.com/images/a.jpg" aid="123456">';
preg_match('/aid="(.*)"/isU', $str, $match1);
echo $match1[1];
[/php]

3.匹配字符串中 [[ ]] 括号内的内容
[php]
$str = '你是我的小丫小苹果,怎么爱你都不嫌多[[ww.z1988.com]]';
preg_match_all("/\[\[(.*?)\]\]/",$content, $result);//正则匹配中括号内的内容
print_r($result);
[/php]

阅读剩余
THE END