我用下面的代碼獲取遠程內容使用PHP捲曲PHP捲曲返回遠程頁面樣式
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://example.com");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$output = curl_exec($ch);
curl_close($ch);
echo $output;
此代碼返回全部內容,但我只是想打印所有stylsheets在下面的格式。
<link rel="stylesheet" href="http://www.example.com/css/style1.css">
<link rel="stylesheet" href="http://www.example.com/css/style2.css">
如何使用str.replace()只與捲曲得到stylsheets過濾內容?
從'simple_html_dom.php'出現的地方可能會很有趣。 – j0k