PHP正则方式提取src属性
$ss = '<img src="/uploads/images/20150516000jpg" height="120" width="120"><br />PHP正则提取SRC属性';
preg_match('/<img+src=\"(+\(jpg|gif|bmp|bnp|png))\"+>/i',$ss,$match); echo $match[1];
$str = '<img src=">
<php
$str = "This is a testThis is a testThis is a <a href=);
$img='<p><img border="0" alt="" src="/joke/images/joke/2015-09-09_870/20150909103535486jpg" width="260" height="293">';
$result = preg_replace ( "/<img[^>]src[=\s\"\']+([^\"\'])[\"\']/", "$1", $img );
echo $result "\n";
以上就是关于php 怎么输出img的src全部的内容,包括:php 怎么输出img的src、php 怎样获取文本内容中的图片和文件路径、用PHP获取链接及图片路径的方法等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)