感谢您的帮助..
我使用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)..我希望脚本在我的服务器中使用原始名称在特定路径中下载此文件..
有人可以帮助我吗?