我正在使用http类,它坚持在设置功能setcookies的行上设置cookie。
这是我的代码
require_once ('../http.php');
$http=new http_class;
$http->user_agent="Mozilla/5.0 (Intel Mac OS X) Gecko/20070515 Firefox/2.0.0.4";
$error=$http->GetRequestArguments($url,$arguments);
foreach ($cookie as $c) {
$t = explode('=',$c);
$http->SetCookie($t[0],$t[1],"","/",".example.com"); //problem is here i think
}
$arguments["Headers"]["Referer"] = $referer;
答案 0 :(得分:0)
您能提供$http->SetCookie(...)
的来源吗?为什么SetCookie
课程中有http_class
方法?输入参数列表看起来与PHP的setcookie完全相同,那么为什么不使用它呢?
答案 1 :(得分:-1)