欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php 中 file_get_content 模拟post数据

程序员文章站 2024-02-09 09:19:16
...
  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 $response = file_get_contents($url, false, stream_context_create($params));
  13. if ($response) {
  14. echo $response;
  15. break;
  16. } else {
  17. echo 'tring ' . $i . ' failed!
    ';
  18. }
  19. }
  20. ?>
复制代码

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