php 正则匹配 url img我现在要匹配一个url地址,如:。我只想要src的url地址,还要匹配,有的是这种形式src后面没有““”双引号,有的是单引号,而且alt和title有的标记中是没有的。请问各位这个正则怎么写呢? PHP URL 正则 图片 url 分享到: ------解决方案--------------------/((http------解决方案--------------------https):\/\/)+(\w+\.)+(\w+)[\w\/\.\-]*(jpg------解决方案--------------------gif------解决方案--------------------png)/------解决方案--------------------$str =<<src后面没有““”双引号单引号没有alt没有title都没有EOF;$reg = '/]*src=[\'"]?([^\'"\s]+)[\'"]?[^>]*>/im';$matches = array();preg_match_all($reg, $str, $matches);print_r($matches);------解决方案-------------------- 引用: $str =src后面没有““”双引号单引号没有alt没有title都没有EOF;$reg = '/]*src=[\'"]?([^\'"\s]+)[\'"]?[^>]*>/im';$matches = array();preg_match_all($reg, $str, $matches);