ホームページ >バックエンド開発 >PHPチュートリアル >php file_get_contents が、淘宝網の製品属性を取得するためにカールに変わります。解決方法を教えてください。

php file_get_contents が、淘宝網の製品属性を取得するためにカールに変わります。解決方法を教えてください。

WBOY
WBOYオリジナル
2016-06-13 12:22:541066ブラウズ

php file_get_contents タオバオ製品属性をキャプチャするためにカールを変換します。助けてください。

この投稿は、2015-05-25 12:16:01 に winniephp によって最終的に編集されました 次のコードをクロールするために、curl を使用する方法は?そして、それを製品の IID とともに保存します
<br />function get_shuxing($type,$iid){<br />if($type=='tmall'){<br />$text=file_get_contents("http://detail.tmall.com/item.htm?id=$iid");<br />preg_match('|<ul id="J_AttrUL">(.*)</ul>|isU',$text, $match);<br />}elseif ($type=='taobao'){<br />$text=file_get_contents("http://item.taobao.com/item.htm?id=$iid");<br />preg_match('|<ul class="attributes-list">(.*)</ul>|isU',$text, $match);<br />}<br />$match=$match[0];<br />$match = iconv('gbk', 'utf-8', $match);<br />echo $match;<br />}

-----ソリューション アイデア--------------------- -
そうですか?
function get_shuxing($type,$iid){<br />        if($type=='tmall'){<br />                //$text=file_get_contents("http://detail.tmall.com/item.htm?id=$iid");<br />                $text=use_curl("http://detail.tmall.com/item.htm?id=$iid");<br />                preg_match('<br><font color='#FF8000'>------解决思路----------------------</font><br><ul id="J_AttrUL">(.*)</ul><br><font color='#FF8000'>------解决思路----------------------</font><br>isU',$text, $match);<br />        }elseif ($type=='taobao'){<br />                //$text=file_get_contents("http://item.taobao.com/item.htm?id=$iid");<br />                $text=use_curl("http://item.taobao.com/item.htm?id=$iid");<br />                preg_match('<br><font color='#FF8000'>------解决思路----------------------</font><br><ul class="attributes-list">(.*)</ul><br><font color='#FF8000'>------解决思路----------------------</font><br>isU',$text, $match);<br />        }<br />        $match=$match[0];<br />        $match = iconv('gbk', 'utf-8', $match);<br />        echo $match;<br />}<br />function use_curl($url){<br />        $ch = curl_init($url);<br />        curl_setopt($ch, CURLOPT_HEADER, 0);<br />        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);<br />        $output = curl_exec($ch);<br />        curl_close($ch);<br />        return $output;<br />}<br />get_shuxing('taobao',45098460735);
声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。