gpt4 book ai didi

php - POST 请求仅在 php 中使用 http_build_query

转载 作者:可可西里 更新时间:2023-11-01 01:03:11 35 4
gpt4 key购买 nike

我需要使用 http_build_query 创建一个 POST 请求。以下是我的代码:

$uri_args = array (
'name' => 'Jack',
'surname' => 'Jackson',
'username' => 'jackson12',
'email' => 'Jack@mail.com',
);

$uri = http_build_query($uri_args);

header("Location: http://samplesite.com?$uri");

目前它生成一个类似 GET 的请求,但我需要 POST。考虑到我不想使用 curl,...仅使用 http_build_query

最佳答案

<?php

$data = array(
'name' => 'Jack',
'surname' => 'Jackson',
'username' => 'jackson12',
'email' => 'Jack@mail.com',
);

$query = http_build_query($data);

// create context
$context = stream_context_create(array(
'http' => array(
'method' => 'POST',
'header' => 'Content-Type: application/x-www-form-urlencoded' . PHP_EOL,
'content' => $query,
),
));

// send request and collect data
$response = file_get_contents(
$target = "http://example.com/target.php",
$use_include_path = false,
$context);

//some actions with $response
//...

// redirect
header("Location: http://samplesite.com");

关于php - POST 请求仅在 php 中使用 http_build_query,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17826912/

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