感谢帮助..
我正在使用 cURL 通过 POST 提交 PHP 文件
$curl = curl_init();
// Set some options - we are passing in a useragent too here
curl_setopt_array($curl, array(
CURLOPT_RETURNTRANSFER => 1,
CURLOPT_URL => 'http://www.******.php',
CURLOPT_TIMEOUT => 5000,
CURLOPT_POST => 1,
CURLOPT_POSTFIELDS => array(
val1 => 3,
val2 => 1
)
));
$resp = curl_exec($curl);
$httpCode = curl_getinfo($curl, CURLINFO_HTTP_CODE);
echo $httpCode;
curl_close($curl);
php 文件响应如下:
<META HTTP-EQUIV='Refresh' CONTENT='1; URL=/******.pdf'>
我的脚本刷新在我的域中搜索文件 .pdf 的页面(错误 404).. 我希望脚本在我的服务器中以原始名称的特定路径下载此文件..
有人可以帮我吗?