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

我双手接过晶莹的雪花,想数一数它有几朵花瓣,谁知它到手上就不见了,变成了小水珠。

    废话不多说,上代码:

复制代码 代码如下:
$data = array(    'name' => 'Joe',    'website' => 'www.haodaima.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    ))));

以上就是PHP中使用file_get_contents post数据代码例子。保护好你的梦想,等到它开花结果的那天,它会让你俯视所有以前看低你的人。更多关于PHP中使用file_get_contents post数据代码例子请关注haodaima.com其它相关文章!