1
問題,交叉動態網站的驗證碼.. :( 問題鏈接動作形式https://edu.uast.ac.ir .. 對不起我的英文不好動態網站的file_get_contents
請測試我的代碼:
我源代碼:
a.php只會
<?php
echo file_get_contents("https://edu.uast.ac.ir");
?>
b.php
<?php
$a = $_POST["captcha_first_page"];
$postdata = http_build_query(
array(
'captcha_first_page' => $a
)
);
$opts = array('http' =>
array(
'method' => 'POST',
'header' => 'Content-type: application/x-www-form-urlencoded',
'content' => $postdata
)
);
$context = stream_context_create($opts);
$result = file_get_contents('https://edu.uast.ac.ir/user/user_manage/userLogin/', false, $context);
echo $result;
?>
請幫我
謝謝。但它沒有奏效。它們是:http://uploadkon.ir/fl/dd/83339 – j14
@ J14我會看它..是驗證碼,b.php的內容? – Kordi
是.. 應顯示: [鏈接] https://edu.uast.ac.ir/user/user_manage/userLogin 但它自帶的圖像... 我在趕時間,我friend.Please測試你的代碼.. TNX – j14