PHP中使用file_get_contents post数据代码例子

前端之家收集整理的这篇文章主要介绍了PHP中使用file_get_contents post数据代码例子前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

废话不多说,上代码

代码如下:
'Joe', 'website' => 'www.jb51.cc' ); $data = http_build_query($data); $data = json_encode($data); $json = file_get_contents($url,stream_context_create(array( 'http' => array( 'timeout' => 30, 'method' => 'POST', 'content' => $data ) )));

原文链接:https://www.f2er.com/php/22630.html

猜你在找的PHP相关文章