91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

php怎么設置http請求體

PHP
小億
121
2023-08-15 09:58:38
欄目: 編程語言

在PHP中,可以使用以下兩種方法設置HTTP請求體:

  1. 使用file_get_contents()函數發送POST請求,并設置請求體數據。
$url = 'http://example.com/api';
$data = array('name' => 'John', 'age' => 30);
$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);
  1. 使用cURL庫發送POST請求,并設置請求體數據。
$url = 'http://example.com/api';
$data = array('name' => 'John', 'age' => 30);
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data));
$result = curl_exec($ch);
curl_close($ch);

注意:以上示例中的$data數組為請求體數據,可以根據需要進行修改。http_build_query()函數用于將數組轉換為URL編碼的字符串。

0
新丰县| 永城市| 武鸣县| 重庆市| 永丰县| 夏津县| 哈尔滨市| 垣曲县| 金昌市| 嘉峪关市| 普格县| 嘉荫县| 会泽县| 河间市| 泰安市| 平山县| 舒兰市| 安阳市| 吐鲁番市| 丽水市| 万盛区| 会理县| 承德县| 镇江市| 贵溪市| 通州市| 仙居县| 沁水县| 黄龙县| 会东县| 桐庐县| 张家口市| 鸡泽县| 孟连| 南华县| 赤水市| 安远县| 新晃| 安乡县| 通化市| 福清市|