首页 技术 正文
技术 2022年11月21日
0 收藏 571 点赞 4,593 浏览 4263 个字

使用PHP模拟post提交数据

分类: PHP LAMP 2013-04-13 12:03 3954人阅读 评论(0) 收藏 举报 CurlsocketPHP

这也是个老生常谈的话题了,上午花了点时间把这个问题整理了一下。

一般来说用PHP来模拟post提交数据有三种方法,file_get_contents、curl和socket。

写了个公用函数,专门用来打印post数据:

  1. <?php
  2. function pr() {
  3. $params = func_get_args();
  4. foreach ($params as $key => $value) {
  5. echo “<pre>”;
  6. print_r($value);
  7. echo “</pre>”;
  8. }
  9. }
<?php
function pr() {
$params = func_get_args();
foreach ($params as $key => $value) {
echo "<pre>";
print_r($value);
echo "</pre>";
}
}

先写一个post.php,用来接收post数据并打印出来:

  1. <?php
  2. require dirname(__FILE__).’/function.php’;
  3. if (isset($_POST) && !empty($_POST)) {
  4. pr($_POST);
  5. } else {
  6. pr(“NO POST DATA!”);
  7. }
<?php
require dirname(__FILE__).'/function.php';if (isset($_POST) && !empty($_POST)) {
pr($_POST);
} else {
pr("NO POST DATA!");
}

下面是用file_get_contents来模拟post:

  1. <?php
  2. require dirname(__FILE__).’/function.php’;
  3. function file_get_contents_post($url, $post) {
  4. $options = array(
  5. ‘http’ => array(
  6. ‘method’ => ‘POST’,
  7. // ‘content’ => ‘name=caiknife&email=caiknife@gmail.com’,
  8. ‘content’ => http_build_query($post),
  9. ),
  10. );
  11. $result = file_get_contents($url, false, stream_context_create($options));
  12. return $result;
  13. }
  14. $data = file_get_contents_post(“http://www.a.com/post/post.php”, array(‘name’=>’caiknife’, ’email’=>’caiknife@gmail.com’));
  15. var_dump($data);
<?php
require dirname(__FILE__).'/function.php';function file_get_contents_post($url, $post) {
$options = array(
'http' => array(
'method' => 'POST',
// 'content' => 'name=caiknife&email=caiknife@gmail.com',
'content' => http_build_query($post),
),
); $result = file_get_contents($url, false, stream_context_create($options)); return $result;
}$data = file_get_contents_post("http://www.a.com/post/post.php", array('name'=>'caiknife', 'email'=>'caiknife@gmail.com'));var_dump($data);

很简单是吧?再来看看curl模拟post:

  1. <?php
  2. require dirname(__FILE__).’/function.php’;
  3. function curl_post($url, $post) {
  4. $options = array(
  5. CURLOPT_RETURNTRANSFER => true,
  6. CURLOPT_HEADER         => false,
  7. CURLOPT_POST           => true,
  8. CURLOPT_POSTFIELDS     => $post,
  9. );
  10. $ch = curl_init($url);
  11. curl_setopt_array($ch, $options);
  12. $result = curl_exec($ch);
  13. curl_close($ch);
  14. return $result;
  15. }
  16. $data = curl_post(“http://www.a.com/post/post.php”, array(‘name’=>’caiknife’, ’email’=>’caiknife@gmail.com’));
  17. var_dump($data);
<?php
require dirname(__FILE__).'/function.php';function curl_post($url, $post) {
$options = array(
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HEADER => false,
CURLOPT_POST => true,
CURLOPT_POSTFIELDS => $post,
); $ch = curl_init($url);
curl_setopt_array($ch, $options);
$result = curl_exec($ch);
curl_close($ch);
return $result;
}$data = curl_post("http://www.a.com/post/post.php", array('name'=>'caiknife', 'email'=>'caiknife@gmail.com'));var_dump($data);

最后是用socket来模拟post:

  1. <?php
  2. require dirname(__FILE__).’/function.php’;
  3. function socket_post($url, $post) {
  4. $urls = parse_url($url);
  5. if (!isset($urls[‘port’])) {
  6. $urls[‘port’] = 80;
  7. }
  8. $fp = fsockopen($urls[‘host’], $urls[‘port’], $errno, $errstr);
  9. if (!$fp) {
  10. echo “$errno, $errstr”;
  11. exit();
  12. }
  13. $post = http_build_query($post);
  14. $length = strlen($post);
  15. $header = <<<HEADER
  16. POST {$urls[‘path’]} HTTP/1.1
  17. Host: {$urls[‘host’]}
  18. Content-Type: application/x-www-form-urlencoded
  19. Content-Length: {$length}
  20. Connection: close
  21. {$post}
  22. HEADER;
  23. fwrite($fp, $header);
  24. $result = ”;
  25. while (!feof($fp)) {
  26. // receive the results of the request
  27. $result .= fread($fp, 512);
  28. }
  29. $result = explode(“\r\n\r\n”, $result, 2);
  30. return $result[1];
  31. }
  32. $data = socket_post(“http://www.a.com/post/post.php”, array(‘name’=>’caiknife’, ’email’=>’caiknife@gmail.com’));
  33. var_dump($data);
<?php
require dirname(__FILE__).'/function.php';function socket_post($url, $post) {
$urls = parse_url($url);
if (!isset($urls['port'])) {
$urls['port'] = 80;
} $fp = fsockopen($urls['host'], $urls['port'], $errno, $errstr);
if (!$fp) {
echo "$errno, $errstr";
exit();
} $post = http_build_query($post);
$length = strlen($post);
$header = <<<HEADER
POST {$urls['path']} HTTP/1.1
Host: {$urls['host']}
Content-Type: application/x-www-form-urlencoded
Content-Length: {$length}
Connection: close{$post}
HEADER; fwrite($fp, $header);
$result = '';
while (!feof($fp)) {
// receive the results of the request
$result .= fread($fp, 512);
}
$result = explode("\r\n\r\n", $result, 2);
return $result[1];
}$data = socket_post("http://www.a.com/post/post.php", array('name'=>'caiknife', 'email'=>'caiknife@gmail.com'));var_dump($data);

这三种方法最后看到的内容都是一样的,但是在是用socket的时候,发送header信息时必须要注意header的完整信息,比如content
type和content length必须要有,connection:
close和post数据之间要空一行,等等;而通过socket取得的内容是包含了header信息的,要处理一下才能获得真正的内容。

相关推荐
python开发_常用的python模块及安装方法
adodb:我们领导推荐的数据库连接组件bsddb3:BerkeleyDB的连接组件Cheetah-1.0:我比较喜欢这个版本的cheeta…
日期:2022-11-24 点赞:878 阅读:9,022
Educational Codeforces Round 11 C. Hard Process 二分
C. Hard Process题目连接:http://www.codeforces.com/contest/660/problem/CDes…
日期:2022-11-24 点赞:807 阅读:5,513
下载Ubuntn 17.04 内核源代码
zengkefu@server1:/usr/src$ uname -aLinux server1 4.10.0-19-generic #21…
日期:2022-11-24 点赞:569 阅读:6,359
可用Active Desktop Calendar V7.86 注册码序列号
可用Active Desktop Calendar V7.86 注册码序列号Name: www.greendown.cn Code: &nb…
日期:2022-11-24 点赞:733 阅读:6,142
Android调用系统相机、自定义相机、处理大图片
Android调用系统相机和自定义相机实例本博文主要是介绍了android上使用相机进行拍照并显示的两种方式,并且由于涉及到要把拍到的照片显…
日期:2022-11-24 点赞:512 阅读:7,773
Struts的使用
一、Struts2的获取  Struts的官方网站为:http://struts.apache.org/  下载完Struts2的jar包,…
日期:2022-11-24 点赞:671 阅读:4,851