如何使用PHP header()函数POST到页面?

时间:2009-03-17 05:23:17

标签: post header http-headers

我在here上找到了以下代码,我认为这样做符合我的要求,但它不起作用:

$host = "www.example.com";
$path = "/path/to/script.php";
$data = "data1=value1&data2=value2";
$data = urlencode($data);

header("POST $path HTTP/1.1\r\n");
header("Host: $host\r\n");
header("Content-type: application/x-www-form-urlencoded\r\n");
header("Content-length: " . strlen($data) . "\r\n");
header("Connection: close\r\n\r\n");
header($data);

我希望发布表单数据,而不是将用户发送到中间页面,然后使用JavaScript重定向它们。我也不想使用GET,因此使用后退按钮并不容易。

这段代码有问题吗?或者有更好的方法吗?

编辑我在考虑标头功能会做什么。我以为我可以让浏览器用数据回发到服务器,但这不是它的意思。相反,我在我的代码中找到了一种方法,以避免需要一个帖子(不会破坏并继续转换到交换机中的下一个案例)。

5 个答案:

答案 0 :(得分:12)

标头功能用于将HTTP响应标头发送回用户(即,您无法使用它来创建请求标头。

我可以问你为什么要这样做?为什么当你可以在那里模拟POST请求然后对某些数据采取行动?我当然假设script.php驻留在你的服务器上。

要创建POST请求,请使用fsockopen()打开与主机的TCP连接,然后在fsockopen()返回的处理程序上使用fwrite(),其值与您在OP中的标头函数中使用的值相同。或者,您可以使用cURL。

答案 1 :(得分:3)

今天非常需要答案,因为不是每个人都想使用cURL来使用Web服务。 PHP也允许使用以下代码

function get_info()
{
    $post_data = array(
        'test' => 'foobar',
        'okay' => 'yes',
        'number' => 2
    );

    // Send a request to example.com
    $result = $this->post_request('http://www.example.com/', $post_data);

    if ($result['status'] == 'ok'){

        // Print headers
        echo $result['header'];

        echo '<hr />';

        // print the result of the whole request:
        echo $result['content'];

    }
    else {
        echo 'A error occured: ' . $result['error'];
    }

}

function post_request($url, $data, $referer='') {

    // Convert the data array into URL Parameters like a=b&foo=bar etc.
    $data = http_build_query($data);

    // parse the given URL
    $url = parse_url($url);

    if ($url['scheme'] != 'http') {
        die('Error: Only HTTP request are supported !');
    }

    // extract host and path:
    $host = $url['host'];
    $path = $url['path'];

    // open a socket connection on port 80 - timeout: 30 sec
    $fp = fsockopen($host, 80, $errno, $errstr, 30);

    if ($fp){

        // send the request headers:
        fputs($fp, "POST $path HTTP/1.1\r\n");
        fputs($fp, "Host: $host\r\n");

        if ($referer != '')
            fputs($fp, "Referer: $referer\r\n");

        fputs($fp, "Content-type: application/x-www-form-urlencoded\r\n");
        fputs($fp, "Content-length: ". strlen($data) ."\r\n");
        fputs($fp, "Connection: close\r\n\r\n");
        fputs($fp, $data);

        $result = '';
        while(!feof($fp)) {
            // receive the results of the request
            $result .= fgets($fp, 128);
        }
    }
    else {
        return array(
            'status' => 'err',
            'error' => "$errstr ($errno)"
        );
    }

    // close the socket connection:
    fclose($fp);

    // split the result header from the content
    $result = explode("\r\n\r\n", $result, 2);

    $header = isset($result[0]) ? $result[0] : '';
    $content = isset($result[1]) ? $result[1] : '';

    // return as structured array:
    return array(
        'status' => 'ok',
        'header' => $header,
        'content' => $content);

}

答案 2 :(得分:2)

除了Salaryman所说的内容之外,看一下PEAR中的类,即使您没有在PHP发行版中安装cURL扩展,也可以使用HTTP请求类。

答案 3 :(得分:1)

有一个很好的课程可以做你想要的。可以在http://sourceforge.net/projects/snoopy/

下载

答案 4 :(得分:-1)

private function sendHttpRequest($host, $path, $query, $port=80){
    header("POST $path HTTP/1.1\r\n" );
    header("Host: $host\r\n" );
    header("Content-type: application/x-www-form-urlencoded\r\n" );
    header("Content-length: " . strlen($query) . "\r\n" );
    header("Connection: close\r\n\r\n" );
    header($query);
}

这会马上让你