如何将这篇curl文章翻译成php



我有这个例子curl post在cli:

curl -X POST --header "Content-Type: text/plain" --header "Accept: application/json" -d "25" "http://{IP}:8080/rest/items/item"

我不想"执行"这是在php中,但使用php内置函数。

拍频振荡器

试试这个:$result是您从URL收到的JSON-Object。

<?php
$headers = [
'Content-Type: text/plain',
'Accept: application/json'
];
$url = 'http://{IP}:8080/rest/items/item';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, 25);
$result = json_decode(curl_exec($ch));
if (curl_errno($ch))
echo 'Error:' . curl_error($ch);
curl_close($ch);
var_dump($result);

我希望这是你想要的/需要的/有"内置功能"的意思。

相关内容

  • 没有找到相关文章

最新更新