💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
## 函数 ``` /** * 发送post请求 * @param string $url 请求地址 * @param array $post_data post键值对数据 * @return string */ function send_post($url, $post_data) { $postdata = http_build_query($post_data); $options = array( 'http' => array( 'method' => 'POST', 'header' => 'Content-type:application/x-www-form-urlencoded', 'content' => $postdata, 'timeout' => 15 * 60 // 超时时间(单位:s) ) ); $context = stream_context_create($options); $result = file_get_contents($url, false, $context); return $result; } ``` ## 方法 ``` /** * 测试:php发送post请求 * @link http://www.jb51.net/article/46627.htm */ public function test() { //使用方法 $post_data = array( 'username' => 'hongwei', 'password' => '02035' ); send_post('http://tmc/train/callback/pay_callback', $post_data); } ``` ## pay_callback 方法 ``` public function pay_callback() { // $path ="/home/pay_callback.txt"; //linux $path ="c:/pay_callback.txt"; file_put_contents($path, json_encode($_POST)); } ``` ## 结果 ![mark](http://qiniu.newthink.cc/blog/20171202-092751537.png)