php 正则表达式获取ul标签下的a标签,div标签和span标签的字段。还有a标签中href的链接

2024-11-01 20:07:57
推荐回答(2个)
回答1:

 $Html = '

  •       The issues regarding postoperative adjuvant therapy and prognostic risk factors for patients with stage I-II cervical cancer: A review.
          Review article

  •       Takekuma M, et al.
                        J Obstet Gynaecol Res.  2017
        ';
     
     $Html = preg_replace('/\s{2,}/', '', $Html);
     preg_match_all('/]*href\s?=\s?[\'"]([^\'"]*)[^>]*>([^<]*)<\/a>]*>([^<]*)<\/div>]*>([^<]*)<\/span>/is', $Html, $Arr);
     print_r( $Arr );

    回答2:

    获取字段?