PHP头条
热点:

PHP中使用file_get_contentspost数据代码例子


废话不多说,上代码:

代码如下:


$data = array(
'name' => 'Joe',
'website' => 'www.bitsCN.com'
);
$data = http_build_query($data);
$data = json_encode($data);
$json = file_get_contents($url, 0, stream_context_create(array(
'http' => array(
'timeout' => 30,
'method' => 'POST',
'content' => $data
)
)));

www.phpzy.comtrue/php/26194.htmlTechArticlePHP中使用file_get_contentspost数据代码例子 废话不多说,上代码: 代码如下: $data = array( 'name' => 'Joe', 'website' => 'www.bitsCN.com' ); $data = http_build_query($data); $data = json_encode($data); $json = file_get_...

相关文章

PHP之友评论

今天推荐