shinelon/gettagattr

匹配字符串中的指定标签属性

Maintainers

Details

gitee.com/xiaomaia/getTagAttr.git

Installs: 3

Dependents: 0

Suggesters: 0

Security: 0

pkg:composer/shinelon/gettagattr

v1.0.0 2022-04-28 11:11 UTC

This package is not auto-updated.

Last update: 2026-01-31 04:19:05 UTC


README

介绍

php匹配字符串中的指定标签属性的composer包

软件架构

软件架构说明

使用说明

    $url = 'https://www.mi.com/index.html';
    $html = file_get_contents($url);
    //以上是抓取网页图片,可根据需求使用指定字符串内容也可获取指定标签指定属性  "asjkdajkdjal哈哈哈哈哈哈<img src='http://xxxxxxxx.jpg' />哈啊哈"
    $pic = new PicService($html, 'img', 'src');
    $pic->getMatches();
    $result = $pic->getMatchesList();
    dump($result);