将数据POST到PHP中的URL

时间:2010-06-20 17:10:08

标签: php post

如何将POST数据发送到PHP中的URL(没有表单)?

我将用它来发送变量来完成并提交表格。

3 个答案:

答案 0 :(得分:182)

如果您希望将数据发布到PHP代码本身的URL(不使用html表单),可以使用curl完成。它看起来像这样:

$url = 'http://www.someurl.com';
$myvars = 'myvar1=' . $myvar1 . '&myvar2=' . $myvar2;

$ch = curl_init( $url );
curl_setopt( $ch, CURLOPT_POST, 1);
curl_setopt( $ch, CURLOPT_POSTFIELDS, $myvars);
curl_setopt( $ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt( $ch, CURLOPT_HEADER, 0);
curl_setopt( $ch, CURLOPT_RETURNTRANSFER, 1);

$response = curl_exec( $ch );

这会将post变量发送到指定的url,页面返回的内容将是$ response。

答案 1 :(得分:71)

cURL-less你可以在php5中使用

$url = 'URL';
$data = array('field1' => 'value', 'field2' => 'value');
$options = array(
        'http' => array(
        'header'  => "Content-type: application/x-www-form-urlencoded\r\n",
        'method'  => 'POST',
        'content' => http_build_query($data),
    )
);

$context  = stream_context_create($options);
$result = file_get_contents($url, false, $context);
var_dump($result);

答案 2 :(得分:10)

您的问题不是特别清楚,但如果您想在不使用表单的情况下将POST数据发送到网址,则可以使用fsockopen或curl。

这是a pretty good walkthrough of both