我有一个用于登录远程站点的 php 脚本,它运行良好。然而,它似乎只在指定的 cookie 文件被命名时才有效cookie.txt
我想要的是每个使用这个脚本的人都有一个单独的 cookie 文件。因此,如果 machineA 上的一个人在 19 日使用它,他们的 cookie 将位于类似/tmp/19/someNameCookie.txt
machineB 的位置/tmp/19/someOtherNamedCookie.txt
,如果 machineC 在 20 日使用它,他们将拥有cookie /tmp/20/someNamedCookie.txt
。
有很多方法可以生成唯一命名的文件,但这里的关键是让它们工作。我在 php 知识方面还很年轻,而且对 curl 完全陌生。
附带说明一下,我也没有成功使用CURLOPT_FOLLOWLOCATION
登录来获取新页面。
谢谢。
这是一个代码。从另一个来源得到这个。
$username=urlencode($usr);
$password=urlencode($pass);
$url="http://domain.com/";
$cookie="cookie.txt";
$ch = curl_init();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt ($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6");
curl_setopt ($ch, CURLOPT_TIMEOUT, 60);
curl_setopt ($ch, CURLOPT_FOLLOWLOCATION, 0);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, CURLOPT_HEADER, 1);
curl_setopt ($ch, CURLOPT_COOKIESESSION, TRUE);
curl_setopt ($ch, CURLOPT_COOKIEJAR, $cookie);
curl_setopt ($ch, CURLOPT_COOKIEFILE, $cookie); // have tried with just the jar, and just the file and both
curl_setopt ($ch, CURLOPT_REFERER, $url);
curl_setopt ($ch, CURLOPT_POSTFIELDS, $postdata);
curl_setopt ($ch, CURLOPT_POST, 1);
$result = curl_exec ($ch);
echo $result;
curl_close($ch);
这是我要检查登录是否成功后调用的代码
$ch2 = curl_init();
//curl_setopt ($ch, CURLOPT_COOKIEJAR, $cookie);
curl_setopt ($ch2, CURLOPT_COOKIEFILE, $cookie);
curl_setopt ($ch2, CURLOPT_URL, "http://domain.com/");
$r = curl_exec($ch2);
echo $r;
curl_close($ch2);
据我了解,如果 cookie 文件不存在,curl 应该创建它。我也尝试过手动创建其他文件并使用 fopen 通过脚本创建其他文件,但仅在我使用 cookie.txt 时才有效,现在所有文件都保存到 public_html 以供测试。