匹配字符串

WBOY
WBOYOriginal
2016-06-23 14:14:58924browse

$handle="http://ec2.images-amazon.com/images/I/311%2Bk07cuIL._SL500_AA280_.jpg,http://ec2.images-amazon.com/images/I/418Qdk6bctL._SL500_AA280_.jpg,http://ec2.images-amazon.com/images/I/51bsLAswKVL._SL500_AA280_.jpg";preg_match_all('#src="(http://ec2\.images-amazon\.com/images/I/[a-z\d]+\._SL500_AA280_\.jpg)"#is',$handle,$m);print_r($m[1]); 



我是要匹配http://ec2.images-amazon.com/images/I/任意字符._SL500_AA280_.jpg


preg_match_all('#src="(http://ec2\.images-amazon\.com/images/I/[a-z\d]+\._SL500_AA280_\.jpg)"#is',$handle,$m);
这段匹配不了,请问哪里的问题呢??


回复讨论(解决方案)

源码中没有 src=" 字符,当然匹配不了。这样写:

preg_match_all('#http://ec2\.images-amazon\.com/images/I/.+?\._SL500_AA280_\.jpg#is',$handle,$m); print_r($m);

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:帮忙看个源码Next article:$_FILE的问题