當前位置:首頁 » 編程語言 » php模擬

php模擬

發布時間: 2024-11-11 14:50:38

『壹』 php怎麼模擬瀏覽器發送get請求

  1. get請求?直接跳轉裡面帶上參數就行了

  2. 代碼如下:

    <?php
    header('Location:http://xxx/yyy?ddd=1&kkk=2');
    ?>

『貳』 如何通過php程序模擬用戶登錄

模擬用戶可以用php的curl的post,例如
$url = "http://www.uzuzuz.com";
$post_data = array ("username" => "uzuzuz","password" => "12345");

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
// post數據
curl_setopt($ch, CURLOPT_POST, 1);
// post的變數
curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
$output = curl_exec($ch);
curl_close($ch);
//列印獲得的數據
print_r($output);

具體參考:http://www.uzuzuz.com/article/4.html

『叄』 PHP中模擬登錄的驗證碼問題應該如何解決

基本思路:

首先獲取一個cookies值,再帶著這個cookies去獲取驗證碼圖片,你再帶著驗證碼值和登錄數據去模擬post登錄。下面是一個模擬獲取驗證碼的。

這里忽略獲取cookies的過程。注意文件為UTF-8無BOM格式

?php
header('Content-Type:image/png');
$url="http://hbyw.e21.e.cn/global/gd.php";//圖片鏈接
$ch=curl_init();
//Cookie:PHPSESSID=
curl_setopt($ch,CURLOPT_URL,$url);
curl_setopt($ch,CURLOPT_COOKIE,'PHPSESSID=');
curl_setopt($ch,CURLOPT_RETURNTRANSFER,0);
curl_setopt($ch,CURLOPT_TIMEOUT,0);//忽略超時
curl_setopt($ch,CURLOPT_NOBODY,false);
$str=curl_exec($ch);
curl_close($ch);
熱點內容
安卓手機怎麼播放hdr 發布:2024-11-22 14:22:29 瀏覽:962
java留言系統源碼 發布:2024-11-22 14:22:27 瀏覽:253
java編程語言基礎 發布:2024-11-22 14:11:44 瀏覽:203
吃雞類手機游戲哪個配置低 發布:2024-11-22 13:55:12 瀏覽:28
app查不到伺服器地址 發布:2024-11-22 13:48:41 瀏覽:624
androidios優缺點 發布:2024-11-22 13:37:53 瀏覽:686
安卓蘋果用什麼聽歌軟體 發布:2024-11-22 13:37:39 瀏覽:309
編譯在左運行在右 發布:2024-11-22 13:18:09 瀏覽:222
方舟新手伺服器怎麼有45級玩家 發布:2024-11-22 13:16:03 瀏覽:819
腳本的鏈接 發布:2024-11-22 13:06:18 瀏覽:648