php curl

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php curl相关的知识,希望对你有一定的参考价值。

curl 模拟post提交

 1 $url = ‘http://localhost/url.php;
 2 
 3 $arr = [
 4     ‘username‘ => ‘Tom‘,
 5     ‘age‘ => 20,
 6     ‘sex‘ => ‘男‘
 7 ];
 8 $ch = curl_init();
 9 
10 curl_setopt($ch, CURLOPT_URL, $url);
11 curl_setopt($ch, CURLOPT_HEADER, 0);
12 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
13 curl_setopt($ch, CURLOPT_POST, 1);
14 curl_setopt($ch, CURLOPT_POSTFIELDS, $arr);
15 
16 $data = curl_exec($ch);
17 
18 var_dump(json_decode($data));

 

以上是关于php curl的主要内容,如果未能解决你的问题,请参考以下文章