当前位置: 代码迷 >> 综合 >> php preg_match 匹配采集的标签
  详细解决方案

php preg_match 匹配采集的标签

热度:13   发布时间:2023-12-16 22:27:04.0

例子

<img src="http://qiniu.jinfangji.com/uploads/ueditor/php/upload/image/20180529/1527585179779262.png" title="1527585179779262.png" alt="image.png"/>


我要获取src的链接如何匹配

preg_match('/<img src="(.*)" title="(.*)" .*>/i', $uncontent, $arr);

(.*)代表取数据

  .*     代表不要

小记:

匹配时每个参数都不能掉了,不然就匹配不出来

自己的坑

preg_match('/<img src="(.*)" title="(.*)" >/i', $uncontent, $arr);


错在哪儿看到没