当前位置:首页 > PHP教程 > php应用 > 列表

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

发布:smiling 来源: PHP粉丝网  添加日期:2021-05-14 10:48:49 浏览: 评论:0 

这篇文章主要介绍了PHP中使用file_get_contents post数据代码例子,本文直接给出代码实例,需要的朋友可以参考下

废话不多说,上代码:

  1. $data = array
  2.     'name' => 'Joe'
  3.     'website' => 'www.phpfensi.com' 
  4. ); 
  5. $data = http_build_query($data); 
  6. $data = json_encode($data); 
  7. $json = file_get_contents($url, 0, stream_context_create(array
  8.     'http' => array
  9.         'timeout' => 30, 
  10.         'method' => 'POST'
  11.         'content' => $data 
  12.     ) 
  13. )));

Tags: file_get_contents post

分享到: