我在不同服务器上有<form>
的页面,我使用cURL自动设置数据。但是在这种形式中有一个文件输入<input name='file' type='file'>
,现在我知道文件输入的行为与其他输入的行为不同。
//This is my code till now.
$ch = curl_init();
//page is password protected I am not sure if this works but I hope it does.
curl_setopt($ch, CURLOPT_URL, "http://user:pass@mydomain.com/system_backup.php");
curl_setopt($ch, CURLOPT_POST, 1);
//set a file as post variable this doesn't work
curl_setopt($ch, CURLOPT_POSTFIELDS, "file=".$file."&var1=".$var1."&var2=".$var2);
$result = curl_exec($ch);
curl_close($ch);
所以我的问题是如何使用cURL将文件设置为postfield。
答案 0 :(得分:0)
Look at this guide,您需要在文件的完整路径前加上“@”
答案 1 :(得分:0)
您可以将参数放在数组$postFields = array('file'=>$file,'var1'=>$var1,'var2'=>$var2);
然后使用curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($postFields));
希望能够奏效。
答案 2 :(得分:0)
自己找到解决方案
$postParams['file'] = '@'.realpath("URLTOFILE.txt"); //for type = file
$postParams['var1'] = urlencode("var1"); //type = text, submit pretty much everything.
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://user:pass@mydomain.com/system_backup.php");
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $postParams);