当前位置:Gxlcms > PHP教程 > php中file_get_content模拟post数据

php中file_get_content模拟post数据

时间:2021-07-01 10:21:17 帮助过:17人阅读

  1. if($_POST['a'] && $_POST['b']) {
  2. echo 'post data success!';
  3. exit();
  4. }
  5. ?>

文件2:indexx.php 主要测试文件。

  1. $url = 'http://www.test.com/index.php';
  2. $data = array(
  3. 'a' => '1',
  4. 'b' => '2WWW'
  5. );
  6. $params = array(
  7. 'http' => array(
  8. 'method' => 'POST',
  9. 'header' => "Content-type:application/x-www-form-urlencoded",
  10. 'content' => http_build_query($data),
  11. ));
  12. for($i=0;$i<3;$i++){
  13. $response = file_get_contents($url, false, stream_context_create($params));
  14. if ($response) {
  15. echo $response;
  16. break;
  17. } else {
  18. echo 'tring ' . $i . ' failed!
    ';
  19. }
  20. }
  21. ?>

得到结果: post data success! 数据成功被Post。

人气教程排行