我正在使用Zend_Http_CookieJar移植某些函数,但需要一些澄清。据推测,只要实例运行,CookieJar就会持续。那么我可以用curl来制作同样的东西吗? :
curl_setopt($ch, CURLOPT_COOKIESESSION, TRUE);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_COOKIEFILE, "cookiefile");
curl_setopt($ch, CURLOPT_COOKIEJAR, "cookiefile");
所以我真正的问题是,如果有三个运行脚本的实例是否会使用cookiefile冲突?