Maison > Questions et réponses > le corps du texte
Et si le lien URL est https://mbd.baidu.com/newspage/data/landingsuper?context=%7B%22nid%22%3A%22news_4480296238548479181%22%7D&n_type=0&p_from=1
Informations sur l'exploration du Web
phpcn_u680412017-12-07 16:41:30
Utilisez curl pour explorer le site Web, veuillez faire attention à https
ringa_lee2017-12-07 14:20:17
Oui, ce qui a été dit au 1er étage est très complet. Ces deux méthodes sont généralement utilisées pour obtenir les informations de la page, file_get_contents et curl request
.NULL2017-12-07 13:23:13
Vous pouvez utiliser file_get_contents ou le code curl :
function getHTTPS($url) { $ch = curl_init(); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); curl_setopt($ch, CURLOPT_HEADER, false); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_REFERER, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE); $result = curl_exec($ch); curl_close($ch); return $result; }