gpt4 book ai didi

php - POST 数据到 PHP 中的 URL

转载 作者:IT老高 更新时间:2023-10-28 11:53:38 24 4
gpt4 key购买 nike

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

我将使用它来发送一个变量来完成并提交一个表单。

最佳答案

如果您希望从 PHP 代码本身(不使用 html 表单)将数据发布到 URL,则可以使用 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中。

关于php - POST 数据到 PHP 中的 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3080146/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com