宽屏模式

PHP使用 file_get_contents 发起 post 请求

<?php
/**
 * 发送post请求
 * @param string $url 请求地址
 * @param array $post_data post键值对数据
 * @return string
 */
function send_post($url, $post_data) {
    $postdata = http_build_query($post_data);
    $options = array(
    'http' => array(
        'method' => 'POST',
        'header' => 'Content-type:application/x-www-form-urlencoded',
        'content' => $postdata,
        'timeout' => 60 // 超时时间(单位:s)
    )
  );
    $context = stream_context_create($options); // 创建资源流上下文
    $result = file_get_contents($url, false, $context);
    return $result;
}

一些要点讲解:

1 . 以上程序用到了 http_build_query() 函数,如果需要了解,可以参看 PHP函数补完:http_build_query()构造URL字符串。

2 . stream_context_create() 是用来创建打开文件的上下文件选项的,比如用POST访问,使用代理,发送header等。就是 创建一个流,再举一个例子吧:

$context = stream_context_create(array( 
    'http' => array( 
        'method'  => 'POST', 
        'header'  => sprintf("Authorization: Basic %s\r\n", base64_encode($username.':'.$password)). 
        "Content-type: application/x-www-form-urlencoded\r\n", 
        'content' => http_build_query(array('status' => $message)), 
        'timeout' => 5, 
    ),
));
$ret = file_get_contents('http://twitter.com/statuses/update.xml', false, $context);

3 . stream_context_create创建的上下文选项即可用于流(stream), 也可用于文件系统(file system)。对于像 file_get_contents、file_put_contents、readfile直接使用文件名操作而没有文件句柄的函数来说更有用。 stream_context_create增加header头只是一部份功能,还可以定义代理、超时等。这使得访问web的功能不弱于curl。

4 . stream_context_create() 作用:创建并返回一个文本数据流并应用各种选项,可用于fopen(),file_get_contents()等过程的超时设置、代理服务器、请求方式、头信息设置的特殊过程。

5 . stream_context_create 还能通过增加 timeout 选项解决file_get_contents超时处理:

$opts = array(
    'http'=>array(
    'method'=>"GET",
    'timeout'=>60,
  )
);
//创建数据流上下文
$context = stream_context_create($opts);

$html =file_get_contents('http://www.nowamagic.net', false, $context);

//fopen输出文件指针处的所有剩余数据:
//fpassthru($fp); //fclose()前使用

Larwas
请先登录后发表评论
  • latest comments
  • 总共0条评论