这篇文章主要为大家详细介绍了PHP中CURL的CURLOPT_POSTFIELDS参数使用的简单示例,具有一定的参考价值,可以用来参考一下。
感兴趣的小伙伴,下面一起跟随四海网的小玲来看看吧!
在通常情况下,我们使用 CURL 来提交 POST 数据的时候,我们已经习惯了这样的写法:代码如下:
curl_setopt( $ch, CURLOPT_POSTFIELDS,$post_data);
代码如下:
<?php
/* 四海网 www.q1010.com */
print_r($_SERVER);?>
代码如下:
[CONTENT_TYPE] => multipart/form-data; boundary=—————————-f924413ea122
代码如下:
[CONTENT_TYPE] => application/x-www-form-urlencoded
代码如下:
The full data to post in a HTTP “POST” operation. To post a file, prepend a filename with @ and use the full path. This can either be passed as a urlencoded string like ‘para1=val1¶2=val2&…' or as an array with the field name as key and field data as value. If value is an array, the Content-Type header will be set to multipart/form-data.
本文来自:http://www.q1010.com/173/16562-0.html
注:关于PHP中CURL的CURLOPT_POSTFIELDS参数使用的简单示例的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。