1 function api_notice_increment($url, $data)
2 {
3 $ch = curl_init();
4 curl_setopt($ch, curlopt_header,0);
5 curl_setopt($ch, curlopt_returntransfer, 1);
6
7 curl_setopt($ch, curlopt_url, $url);
8 curl_setopt($ch, curlopt_post, 1);
9 curl_setopt($ch, curlopt_postfields, $data);
10 $lst['rst'] = curl_exec($ch);
11 $lst['info'] = curl_getinfo($ch);
12 curl_close($ch);
13 return $lst;
14 }
15 $url = "http://localhost/test/post.api.php教程?app=test&act=testact";
16 $data = array (
17 'goods_id' => '1010000001224',
18 'store_id' => '20708',
19 'status' => 'goodsdownshelf',
20 );
error_log(var_export($_post,1),3,'d:/post.txt');
'goods_id' => '1010000001224',
'store_id' => '20708',
'status' => 'goodsdownshelf',
)
1 2 function api_notice_increment($url, $data)
3 {
4 $ch = curl_init();
5 curl_setopt($ch, curlopt_header,0);
6 curl_setopt($ch, curlopt_returntransfer, 1);
7
8 curl_setopt($ch, curlopt_url, $url);
9 curl_setopt($ch, curlopt_post, 1);
10 $data = http_build_query($data);
11 curl_setopt($ch, curlopt_postfields, $data);
12 $lst['rst'] = curl_exec($ch);
13 $lst['info'] = curl_getinfo($ch);
14 curl_close($ch);
15 return $lst;
16 }
17 $url = "http://localhost/test/post.api.php?app=test&act=testact";
18 $data = array (
19 'goods_id' => '1010000001224',
20 'store_id' => '20708',
21 'status' => 'goodsdownshelf',
22 );
23
24
25 api_notice_increment($url,$data);
'goods_id' => '1010000001224',
'store_id' => '20708',
'status' => 'goodsdownshelf',
)










