gpt4 book ai didi

php - 如何将 linux 命令 CURL 转换为 PHP

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:54:52 29 4
gpt4 key购买 nike

我想将此 linux 命令控制台转换为 PHP 代码,以通过 curl 发送数据,

curl -X POST -d 'data[][street]=1' link.....

谢谢!!

最佳答案

$fields = 2;
$fields_as_string = "key=value&key2=value"

//open the curl connection
$ch = curl_init();

//set the url, number of POST vars, POST data
curl_setopt($ch,CURLOPT_URL, $url);
// set the number of post fields
curl_setopt($ch,CURLOPT_POST, $fields);
// set the fields
curl_setopt($ch,CURLOPT_POSTFIELDS, $fields_as_string);

//execute post
$result = curl_exec($ch);

//close connection
curl_close($ch);

不要忘记确保您已经启用了 curl php 扩展。

关于php - 如何将 linux 命令 CURL 转换为 PHP,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21602003/

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