http.php中最长执行时间为30秒

时间:2010-06-25 09:43:23

标签: php

我正在使用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;

2 个答案:

答案 0 :(得分:0)

您能提供$http->SetCookie(...)的来源吗?为什么SetCookie课程中有http_class方法?输入参数列表看起来与PHP的setcookie完全相同,那么为什么不使用它呢?

答案 1 :(得分:-1)

我假设您收到错误,因为您的脚本运行时间过长。您可以通过这种方式删除限制:

 set_time_limit(0);

另请参阅http://php.net/set_time_limit了解详情。