1. 程式人生 > >匹配html中a標籤的內容

匹配html中a標籤的內容

利用正則表示式來匹配html中a標籤中的內容:

     獲取html內容:

     $contents = file_get_contents('a.html');

    利用正則匹配:

     preg_match_all('/<a.*>(.*)<\/a>/',$contents,$matches);

     輸出:

     print_r($matches[1]);