ホームページ  >  記事  >  バックエンド開発  >  phpカール百度ホームページソリューションへのシミュレートされたログイン

phpカール百度ホームページソリューションへのシミュレートされたログイン

WBOY
WBOYオリジナル
2016-06-13 13:36:491171ブラウズ

phpカールはBaiduホームページへのログインをシミュレートします
コードは次のとおりです:

PHP コード
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--><?php
$url = "https://passport.baidu.com/?login&tpl=mn";
//$url = "http://www.baidu.com/";
$cookdir = "d:/www/html/mndl/cookie.txt";
$ch =curl_init();
curl_setopt ($ch、CURLOPT_URL、$url);
curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, FALSE); //この文は、証明書を検証しないように設定します。curl_setopt ($ch, CURLOPT_HEADER, 0);   
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch、CURLOPT_COOKIEJAR、$cookdir); //Cookie を保存送信用户浏览器情報送信访问来源
curl_setopt ($ch, CURLOPT_USERAGENT, "Mozilla/4.0 (互換性; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)");
curl_setopt ($ch, CURLOPT_REFERER, "http://www.baidu.com/");
$contents =curl_exec($ch);
カール_クローズ($ch);

/* 原始表单样式
                <input type="hidden" name="tpl_ok" value="">
                <input type="hidden" name="next_target" value="">
                <input type="hidden" name="tpl" value="mn">
                <input type="hidden" name="skip_ok" value="">
                <input type="hidden" name="aid" value="">
                <input type="hidden" name="need_pa​​y" value="">
                <input type="hidden" name="need_coin" value="">
                <input type="hidden" name="pay_method" value="">
                <input type="hidden" id="u" name="u" value="http://www.baidu.com/">
                <input type="hidden" name="return_method" value="get">
                <input type="hidden" name="more_param" value="">
                <input type="hidden" name="return_type" value="">
                <input type="hidden" name="psp_tt" value="0">
                <input type="hidden" id="password" name="password" value="">
                <input type="hidden" name="safeflg" id="safeflg" value="">
                <input type="hidden" name="isphone" value="tpl">
*/
$post_fields = 配列();
$post_fields = preg_data($contents,'aid',$post_fields);
$post_fields = preg_data($contents,'isphone',$post_fields);
$post_fields['mem_pass'] = 'オン'; //post データベース数组 记住我的登录状態态
$post_fields = preg_data($contents,'more_param',$post_fields);
$post_fields = preg_data($contents,'need_coin',$post_fields);
$post_fields = preg_data($contents,'need_pa​​y',$post_fields);
$post_fields = preg_data($contents,'next_target',$post_fields);
$post_fields['パスワード'] = 'パスワード'; //post データベース数组 记住我的登录状態态
$post_fields = preg_data($contents,'pay_method',$post_fields);
$post_fields = preg_data($contents,'psp_tt',$post_fields);
$post_fields = preg_data($contents,'return_method',$post_fields);
$post_fields = preg_data($contents,'return_type',$post_fields);
$post_fields = preg_data2($contents,'safeflg',$post_fields);
$post_fields = preg_data($contents,'skip_ok',$post_fields);
$post_fields = preg_data($contents,'tpl',$post_fields);
$post_fields = preg_data($contents,'tpl_ok',$post_fields);
$post_fields['u'] = 'http://www.baidu.com/';
$post_fields['ユーザー名'] = 'ユーザー名'; //post データベース数组 记住我的登录状態态
$post_fields['verifycode'] = '';

$ch =curl_init();
curl_setopt ($ch、CURLOPT_URL、$url);
curl_setopt ($ch, CURLOPT_HEADER, 0);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, CURLOPT_POST, 1);
curl_setopt ($ch、CURLOPT_POSTFIELDS、$post_fields);
curl_setopt ($ch、CURLOPT_COOKIEJAR、$cookdir);
curl_setopt ($ch, CURLOPT_USERAGENT, "Mozilla/4.0 (互換性; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)");
curl_setopt ($ch, CURLOPT_REFERER, "https://passport.baidu.com/?login&tpl=mn");
カール_exec($ch);
カール_クローズ($ch);

$url = "http://www.baidu.com/";
$ch =curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_COOKIEFILE, $cookdir);
curl_setopt ($ch, CURLOPT_USERAGENT, "Mozilla/4.0 (互換性; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)");
curl_setopt ($ch, CURLOPT_REFERER, "http://www.baidu.com/n");

$contents =curl_exec($ch);print_r($contents);die;
カール_クローズ($ch);

出口;
関数 preg_data($source,$chr,$array){
        preg_match('/<inputs*type="hidden"s*name="'.$chr.'"s*value="(.*?)">/i', $source, $matches);
        if(!empty($matches)) {
            $a = $matches[1];
        } それ以外 {
            die('「.$chr.」が見つかりません。');
        }
        $array[$chr]=$a;
        $array を返します。
}関数 preg_data2($source,$chr,$array){
        preg_match('/<inputs*type="hidden"s*name="'.$chr.'"s*id="'.$chr.'"s*value="(.*?)"> /i'、$source、$matches);
        if(!empty($matches)) {
            $a = $matches[1];
        } それ以外 {
            die('「.$chr.」が見つかりません。');
        }
        $array[$chr]=$a;
        $array を返します。
}
?>

 <div class="clear"></div>
声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。