202103-11 php中preg_match_all只能匹配100000字节的限制 NEW 背景用preg_match_all匹配时,偶尔会匹配失败,只能匹配到一部分符合的数据,代码如下://获取html文本中的a标签,然后获取 标签 <>之间的内容 function get_tag_from_html($content) { $pattern = "/(<a(.*)>(.*)<\/a>)|(<.*?>)/... Read More >