PHP头条
热点:

php使用curl存储cookie的示例


代码如下:
$curl = curl_init();
$url = 'http://www.bitsCN.com/admin/gateway/login';
$data = array(
'username'=>'admin',
'password'=>'123'
);
$cookie = tempnam('./temp','cookie');
curl_setopt($curl,CURLOPT_URL,$url);
curl_setopt($curl,CURLOPT_POST,count($data));
curl_setopt($curl,CURLOPT_POSTFIELDS,$data);
curl_setopt($curl,CURLOPT_COOKIEJAR,$cookie);
ob_start();
curl_exec($curl);
$result = ob_get_contents();
ob_end_clean();
curl_close($curl);

www.phpzy.comtrue/php/22601.htmlTechArticlephp使用curl存储cookie的示例 代码如下: $curl = curl_init(); $url = 'http://www.bitsCN.com/admin/gateway/login'; $data = array( 'username'=>'admin', 'password'=>'123' ); $cookie = tempnam('./temp','cookie'); curl_setopt($curl,CURLO...

相关文章

PHP之友评论

今天推荐