Blogger Information
Blog 3
fans 0
comment 0
visits 3532
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
php获取真实地址
Empty的博客
Original
1003 people have browsed it

<?php

function curl_post_302($url,$data=null) {

    $ch = curl_init();

    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

    curl_setopt($ch, CURLOPT_URL, $url);

    curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 30);

    curl_setopt($ch, CURLOPT_TIMEOUT, 30);

    curl_setopt($ch, CURLOPT_POST, 1);

    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); // 获取转向后的内容 

    $data = curl_exec($ch);

    $Headers = curl_getinfo($ch); 

    curl_close($ch);

    if($data != $Headers){ 

        return $Headers["url"]; 

        }else{

            return false;

        }

}



?>


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post