php curl post提交到asp,asp取不到值是为什么?


首先我说明,没有实践过的不要乱说程序哪里错了啊的话。

php asp

蒙娜丽莎夫斯基 10 years, 11 months ago

1.打开curl扩展
2.注意是不是https
3.curl_setopt($ch, CURLOPT_POST, 1),是标识post数据过去

下边是代码:
set_time_limit(120);
$ch = curl_init($curl) ;
if($method == 'post'){
curl_setopt($ch, CURLOPT_POST, 1);
}
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true) ;
curl_setopt($ch, CURLOPT_BINARYTRANSFER, true) ;
$output = curl_exec($ch) ;

你好我叫大表哥 answered 10 years, 11 months ago

Your Answer