您好,欢迎访问一九零五行业门户网

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

废话不多说,上代码:
$data = array( 'name' => 'joe', 'website' => 'www.jb51.net' ); $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 ) )));
更多php中使用file_get_contents post数据代码例子。
其它类似信息

推荐信息