PHP在cURL请求后找不到cookie文件

时间:2012-08-23 18:34:18

标签: php cookies curl file-get-contents

我正在尝试使用cURL登录论坛并将cookie保存到文件中,然后解析cookie以获取phpbb2mysql_sid cookie。到目前为止,这是我的代码:

<?php

$curl = curl_init();

$cookieFile = 'C:\xampp\htdocs\cookies\\' . uniqid(true);

// Login
curl_setopt($curl, CURLOPT_URL, 'http://localhost/phpbb2/login.php');
curl_setopt($curl, CURLOPT_COOKIEJAR, $cookieFile);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_HEADER, true);
curl_setopt($curl, CURLOPT_POST, true);
$postVars = array('username' => 'username', 'password' => 'testing', 'autologin' => 'on', 'login' => 'Log in');
curl_setopt($curl, CURLOPT_POSTFIELDS, $postVars);
$resp = curl_exec($curl);

// Parse sid from cookie file
preg_match('/phpbb2mysql_sid\t(.*)/', file_get_contents($cookieFile), $match);
$sId = $match[1];

echo $sId;

但是,我在运行脚本时收到此错误:

Warning: file_get_contents(C:\xampp\htdocs\cookies\150367764c4ef3) [function.file-get-contents]: failed to open stream: No such file or directory in C:\xampp\htdocs\leech\post.php on line 18

Notice: Undefined offset: 1 in C:\xampp\htdocs\post.php on line 19

如果我检查我的文件系统,那么该文件就在那里。获取文件内容的代码是之后 cURL请求,因此该文件应该存在,对吗?

1 个答案:

答案 0 :(得分:1)

发现问题。 cookie文件仅在调用curl_close()后保存。只需在file_get_contents()调用之前关闭cURL句柄,它就像魅力一样。