HTML parsing in PHP is done with the DOM module. $dom = new DOMDocument; $dom->loadHTML($html); $images = $dom->getElementsByTagName('img'); foreach ...
確定! 回上一頁