PHP5 的无 CURL 方法:
$url = 'http://server.com/path';
$data = array('key1' => 'value1', 'key2' => 'value2');
// use key 'http' even if you send the request to https://...
$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);
if ($result === FALSE) { /* Handle error */ }
var_dump($result);
有关该方法以及如何添加标头的更多信息,请参阅 PHP 手册,例如:
stream_context_create:http://php.net/manual/en/function.stream-context-create.php
您可以使用 cURL:
<?php
//The url you wish to send the POST request to
$url = $file_name;
//The data you want to send via POST
$fields = [
'__VIEWSTATE ' => $state,
'__EVENTVALIDATION' => $valid,
'btnSubmit' => 'Submit'
];
//url-ify the data for the POST
$fields_string = http_build_query($fields);
//open connection
$ch = curl_init();
//set the url, number of POST vars, POST data
curl_setopt($ch,CURLOPT_URL, $url);
curl_setopt($ch,CURLOPT_POST, true);
curl_setopt($ch,CURLOPT_POSTFIELDS, $fields_string);
//So that curl_exec returns the contents of the cURL; rather than echoing it
curl_setopt($ch,CURLOPT_RETURNTRANSFER, true);
//execute post
$result = curl_exec($ch);
echo $result;
?>
我使用以下函数使用 curl 发布数据。 $data 是要发布的字段数组(将使用 http_build_query 正确编码)。数据使用 application/x-www-form-urlencoded 进行编码。
function httpPost($url, $data)
{
$curl = curl_init($url);
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, http_build_query($data));
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($curl);
curl_close($curl);
return $response;
}
@Edward 提到 http_build_query 可能会被省略,因为 curl 将正确编码传递给 CURLOPT_POSTFIELDS 参数的数组,但请注意,在这种情况下,数据将使用 multipart/form-data 进行编码。
我将此函数与 API 一起使用,这些 API 期望使用 application/x-www-form-urlencoded 对数据进行编码。这就是我使用 http_build_query() 的原因。
http_build_query
将 $data
数组转换为字符串,避免输出为 multipart/form-data。
... CURLOPT_RETURNTRANSFER, true
导致 $response
包含内容。
file_get_contents
的,您的解决方案需要 CURL 很多人没有。所以您的解决方案可能有效,但它没有回答如何使用本机内置文件/流函数执行此操作的问题。
我建议您使用经过全面单元测试并使用最新编码实践的开源包 guzzle。
安装 Guzzle
转到项目文件夹中的命令行并键入以下命令(假设您已经安装了包管理器 composer)。如果您需要有关如何安装 Composer 的帮助,you should have a look here。
php composer.phar require guzzlehttp/guzzle
使用 Guzzle 发送 POST 请求
Guzzle 的使用非常简单,因为它使用了轻量级的面向对象 API:
// Initialize Guzzle client
$client = new GuzzleHttp\Client();
// Create a POST request
$response = $client->request(
'POST',
'http://example.org/',
[
'form_params' => [
'key1' => 'value1',
'key2' => 'value2'
]
]
);
// Parse the response object, e.g. read the headers, body, etc.
$headers = $response->getHeaders();
$body = $response->getBody();
// Output headers and body for debugging purposes
var_dump($headers, $body);
我想添加一些关于 Fred Tanrikut 基于 curl 的答案的想法。我知道他们中的大多数已经写在上面的答案中,但我认为显示一个包含所有这些答案的答案是个好主意。
这是我编写的基于 curl 发出 HTTP-GET/POST/PUT/DELETE 请求的类,仅涉及响应正文:
class HTTPRequester {
/**
* @description Make HTTP-GET call
* @param $url
* @param array $params
* @return HTTP-Response body or an empty string if the request fails or is empty
*/
public static function HTTPGet($url, array $params) {
$query = http_build_query($params);
$ch = curl_init($url.'?'.$query);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HEADER, false);
$response = curl_exec($ch);
curl_close($ch);
return $response;
}
/**
* @description Make HTTP-POST call
* @param $url
* @param array $params
* @return HTTP-Response body or an empty string if the request fails or is empty
*/
public static function HTTPPost($url, array $params) {
$query = http_build_query($params);
$ch = curl_init();
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $query);
$response = curl_exec($ch);
curl_close($ch);
return $response;
}
/**
* @description Make HTTP-PUT call
* @param $url
* @param array $params
* @return HTTP-Response body or an empty string if the request fails or is empty
*/
public static function HTTPPut($url, array $params) {
$query = \http_build_query($params);
$ch = \curl_init();
\curl_setopt($ch, \CURLOPT_RETURNTRANSFER, true);
\curl_setopt($ch, \CURLOPT_HEADER, false);
\curl_setopt($ch, \CURLOPT_URL, $url);
\curl_setopt($ch, \CURLOPT_CUSTOMREQUEST, 'PUT');
\curl_setopt($ch, \CURLOPT_POSTFIELDS, $query);
$response = \curl_exec($ch);
\curl_close($ch);
return $response;
}
/**
* @category Make HTTP-DELETE call
* @param $url
* @param array $params
* @return HTTP-Response body or an empty string if the request fails or is empty
*/
public static function HTTPDelete($url, array $params) {
$query = \http_build_query($params);
$ch = \curl_init();
\curl_setopt($ch, \CURLOPT_RETURNTRANSFER, true);
\curl_setopt($ch, \CURLOPT_HEADER, false);
\curl_setopt($ch, \CURLOPT_URL, $url);
\curl_setopt($ch, \CURLOPT_CUSTOMREQUEST, 'DELETE');
\curl_setopt($ch, \CURLOPT_POSTFIELDS, $query);
$response = \curl_exec($ch);
\curl_close($ch);
return $response;
}
}
改进
使用 http_build_query 从请求数组中获取查询字符串。(您也可以使用数组本身,因此请参阅:http://php.net/manual/en/function.curl-setopt.php)
返回响应而不是回显它。顺便说一句,您可以通过删除 curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); 行来避免返回。之后返回值为布尔值(true = 请求成功,否则发生错误)并回显响应。见:http://php.net/en/manual/function.curl-exec.php
使用 curl_close 清除会话关闭和 curl 处理程序的删除。见:http://php.net/manual/en/function.curl-close.php
对 curl_setopt 函数使用布尔值而不是使用任何数字。(我知道任何不等于 0 的数字也被认为是 true,但是使用 true 会生成更可读的代码,但这只是我的看法)
能够进行 HTTP-PUT/DELETE 调用(用于 RESTful 服务测试)
使用示例
得到
$response = HTTPRequester::HTTPGet("http://localhost/service/foobar.php", array("getParam" => "foobar"));
邮政
$response = HTTPRequester::HTTPPost("http://localhost/service/foobar.php", array("postParam" => "foobar"));
放
$response = HTTPRequester::HTTPPut("http://localhost/service/foobar.php", array("putParam" => "foobar"));
删除
$response = HTTPRequester::HTTPDelete("http://localhost/service/foobar.php", array("deleteParam" => "foobar"));
测试
您还可以使用这个简单的类进行一些很酷的服务测试。
class HTTPRequesterCase extends TestCase {
/**
* @description test static method HTTPGet
*/
public function testHTTPGet() {
$requestArr = array("getLicenses" => 1);
$url = "http://localhost/project/req/licenseService.php";
$this->assertEquals(HTTPRequester::HTTPGet($url, $requestArr), '[{"error":false,"val":["NONE","AGPL","GPLv3"]}]');
}
/**
* @description test static method HTTPPost
*/
public function testHTTPPost() {
$requestArr = array("addPerson" => array("foo", "bar"));
$url = "http://localhost/project/req/personService.php";
$this->assertEquals(HTTPRequester::HTTPPost($url, $requestArr), '[{"error":false}]');
}
/**
* @description test static method HTTPPut
*/
public function testHTTPPut() {
$requestArr = array("updatePerson" => array("foo", "bar"));
$url = "http://localhost/project/req/personService.php";
$this->assertEquals(HTTPRequester::HTTPPut($url, $requestArr), '[{"error":false}]');
}
/**
* @description test static method HTTPDelete
*/
public function testHTTPDelete() {
$requestArr = array("deletePerson" => array("foo", "bar"));
$url = "http://localhost/project/req/personService.php";
$this->assertEquals(HTTPRequester::HTTPDelete($url, $requestArr), '[{"error":false}]');
}
}
如果您要这样做,还有另一种 CURL 方法。
一旦您了解了 PHP curl 扩展的工作方式,将各种标志与 setopt() 调用结合起来,这将非常简单。在这个例子中,我有一个变量 $xml ,它保存着我准备发送的 XML - 我将把它的内容发布到示例的测试方法中。
$url = 'http://api.example.com/services/xmlrpc/';
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $xml);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);
//process $response
首先我们初始化连接,然后我们使用 setopt() 设置一些选项。这些告诉 PHP 我们正在发出一个 post 请求,并且我们正在发送一些数据,提供数据。 CURLOPT_RETURNTRANSFER 标志告诉 curl 给我们输出作为 curl_exec 的返回值,而不是输出它。然后我们进行调用并关闭连接——结果在 $response 中。
$ch
而不是 $curl
,对吗?
如果您有任何机会使用 Wordpress 来开发您的应用程序(它实际上是一种获得授权、信息页面等的便捷方式,即使是非常简单的东西),您可以使用以下代码段:
$response = wp_remote_post( $url, array('body' => $parameters));
if ( is_wp_error( $response ) ) {
// $response->get_error_message()
} else {
// $response['body']
}
它使用不同的方式来发出实际的 HTTP 请求,具体取决于 Web 服务器上可用的内容。有关详细信息,请参阅 HTTP API documentation。
如果您不想开发自定义主题或插件来启动 Wordpress 引擎,您可以在 wordpress 根目录中的一个独立 PHP 文件中执行以下操作:
require_once( dirname(__FILE__) . '/wp-load.php' );
// ... your code
它不会显示任何主题或输出任何 HTML,只需使用 Wordpress API 即可!
curl-less method above 的另一种选择是使用原生 stream 函数:
stream_context_create():使用选项预设中提供的任何选项创建并返回流上下文。
stream_get_contents():与 file_get_contents() 相同,不同之处在于 stream_get_contents() 对已打开的流资源进行操作,并以字符串形式返回剩余内容,最多为 maxlength 个字节,并从指定的偏移量开始。
带有这些的 POST 函数可以简单地像这样:
<?php
function post_request($url, array $params) {
$query_content = http_build_query($params);
$fp = fopen($url, 'r', FALSE, // do not use_include_path
stream_context_create([
'http' => [
'header' => [ // header array does not need '\r\n'
'Content-type: application/x-www-form-urlencoded',
'Content-Length: ' . strlen($query_content)
],
'method' => 'POST',
'content' => $query_content
]
]));
if ($fp === FALSE) {
return json_encode(['error' => 'Failed to get contents...']);
}
$result = stream_get_contents($fp); // no maxlength/offset
fclose($fp);
return $result;
}
$fp
是 false
,则不必使用 fclose()
。因为 fclose()
期望资源是参数。
这里只使用一个没有 cURL 的命令。超级简单。
echo file_get_contents('https://www.server.com', false, stream_context_create([
'http' => [
'method' => 'POST',
'header' => "Content-type: application/x-www-form-urlencoded",
'content' => http_build_query([
'key1' => 'Hello world!', 'key2' => 'second value'
])
]
]));
使用 PHP
发送 GET
或 POST
请求的更好方法如下:
<?php
$r = new HttpRequest('http://example.com/form.php', HttpRequest::METH_POST);
$r->setOptions(array('cookies' => array('lang' => 'de')));
$r->addPostFields(array('user' => 'mike', 'pass' => 's3c|r3t'));
try {
echo $r->send()->getBody();
} catch (HttpException $ex) {
echo $ex;
}
?>
代码取自此处的官方文档 http://docs.php.net/manual/da/httprequest.send.php
根据主要答案,这是我使用的:
function do_post($url, $params) {
$options = array(
'http' => array(
'header' => "Content-type: application/x-www-form-urlencoded\r\n",
'method' => 'POST',
'content' => $params
)
);
$result = file_get_contents($url, false, stream_context_create($options));
}
示例用法:
do_post('https://www.google-analytics.com/collect', 'v=1&t=pageview&tid=UA-xxxxxxx-xx&cid=abcdef...');
https://jsonplaceholder.typicode.com/todos/1
)的用法?提前致谢
我一直在寻找类似的问题,并找到了一种更好的方法。就这样吧。
您可以简单地将以下行放在重定向页面上(比如 page1.php)。
header("Location: URL", TRUE, 307); // Replace URL with to be redirected URL, e.g. final.php
我需要这个来重定向 REST API 调用的 POST 请求。该解决方案能够使用发布数据以及自定义标头值进行重定向。
redirect a page request with POST param
和 send POST request
之间的区别。对我来说,两者的目的是相同的,如果我错了,请纠正我。
[编辑]:请忽略,现在在 php 中不可用。
还有一个你可以使用
<?php
$fields = array(
'name' => 'mike',
'pass' => 'se_ret'
);
$files = array(
array(
'name' => 'uimg',
'type' => 'image/jpeg',
'file' => './profile.jpg',
)
);
$response = http_post_fields("http://www.example.com/", $fields, $files);
?>
可以使用此代码:
<?php
$postdata = http_build_query(
array(
'name' => 'Robert',
'id' => '1'
)
);
$opts = array('http' =>
array(
'method' => 'POST',
'header' => 'Content-type: application/x-www-form-urlencoded',
'content' => $postdata
)
);
$context = stream_context_create($opts);
$result = file_get_contents('http://localhost:8000/api/test', false, $context);
echo $result;?>
尝试使用 PEAR 的 HTTP_Request2 包轻松发送 POST 请求。或者,您可以使用 PHP 的 curl 函数或使用 PHP stream context。
HTTP_Request2 还使 mock out the server 成为可能,因此您可以轻松地对代码进行单元测试
我创建了一个使用 JSON 请求帖子的函数:
const FORMAT_CONTENT_LENGTH = 'Content-Length: %d';
const FORMAT_CONTENT_TYPE = 'Content-Type: %s';
const CONTENT_TYPE_JSON = 'application/json';
/**
* @description Make a HTTP-POST JSON call
* @param string $url
* @param array $params
* @return bool|string HTTP-Response body or an empty string if the request fails or is empty
*/
function HTTPJSONPost(string $url, array $params)
{
$content = json_encode($params);
$response = file_get_contents($url, false, // do not use_include_path
stream_context_create([
'http' => [
'method' => 'POST',
'header' => [ // header array does not need '\r\n'
sprintf(FORMAT_CONTENT_TYPE, CONTENT_TYPE_JSON),
sprintf(FORMAT_CONTENT_LENGTH, strlen($content)),
],
'content' => $content
]
])); // no maxlength/offset
if ($response === false) {
return json_encode(['error' => 'Failed to get contents...']);
}
return $response;
}
我更喜欢这个:
function curlPost($url, $data = NULL, $headers = []) {
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_TIMEOUT, 5); //timeout in seconds
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($ch, CURLOPT_ENCODING, 'identity');
if (!empty($data)) {
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
}
if (!empty($headers)) {
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
}
$response = curl_exec($ch);
if (curl_error($ch)) {
trigger_error('Curl Error:' . curl_error($ch));
}
curl_close($ch);
return $response;
}
使用示例:
$response=curlPost("http://my.url.com", ["myField1"=>"myValue1"], ["myFitstHeaderName"=>"myFirstHeaderValue"]);
如果您来自以前的 POST/GET/...,您可以在实际的 php 表中include('fileName.php')
或 require('fileName.php')
PHP 脚本。因此它将继续 POST/GET/... 请愿书将在范围内有效
file_get_contents()
的文件名。请参阅php.net/manual/en/…file_get_contents()
是 PHP 核心的一部分。此外,不必要地使用扩展程序可能会扩大应用程序的攻击面。例如谷歌php curl cve