php post 设置header json传参
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php post 设置header json传参相关的知识,希望对你有一定的参考价值。
参考技术A public function urlGetContent( params = null, json = false)ch, CURLOPT_URL, ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt( ch, CURLOPT_HEADER, 0);
if ( ch, CURLOPT_POST, true);
if ( params))
params);
if (is_string( params))
curl_setopt( params);
else
// error_log("Argument $params should be an array of parameters or (if you want to send raw data) a string");
return false;
if ( ch, CURLOPT_HTTPHEADER,
array(
'Content-Type: application/json; charset=utf-8',
'Content-Length:' . strlen( ch, CURLOPT_RETURNTRANSFER, 1);
ch);
curl_close( output;
以上是关于php post 设置header json传参的主要内容,如果未能解决你的问题,请参考以下文章