So geben Sie die URL nach dem Sprung in PHP aus: 1. Holen Sie sich die URL nach dem Sprung durch „curl_getinfo($ch, CURLINFO_EFFECTIVE_URL);“ 2. Holen Sie sich die URL nach dem Sprung durch „curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'GET');" Und verwenden Sie die Echo-Ausgabe.
Die Betriebsumgebung dieses Tutorials: Windows 10-System, PHP-Version 8.1, DELL G3-Computer
Wie gibt PHP die URL nach dem Sprung aus?
php, um die umgeleitete URL zu erhalten, verwenden Sie curl
Methode 1:
$url = 'http://www.baidu.com/link?url=77I2GJqjJ4zBBpC8yDF8xDhiqDSn1JZjFWsHhEoSNd85PkV8Xil-rckpQ8_kjGKNNq'; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_NOBODY, 1);// 不需要页面内容 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);// 不直接输出 curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);// 返回最后的Location curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'GET');//有时需要这个功能 curl_setopt($ch, CURLOPT_MAXREDIRS, 3);//限定只能抓取跳转3次以内的网址 curl_exec($ch); $info = curl_getinfo($ch,CURLINFO_EFFECTIVE_URL); curl_close($ch); echo $info;
Methode 2:
$ch= curl_init("http://www.baidu.com"); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_AUTOREFERER, 1); curl_setopt($ch, CURLOPT_NOBODY, 1); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_HEADER, 1); curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'GET');//有时需要这个功能 curl_exec($ch); $aaa = curl_getinfo($ch, CURLINFO_EFFECTIVE_URL); curl_close($ch); echo $aaa;
Empfohlenes Lernen: „PHP-Video-Tutorial“
Das obige ist der detaillierte Inhalt vonSo geben Sie die URL nach dem Sprung in PHP aus. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!