Heim  >  Artikel  >  Backend-Entwicklung  >  php使用curl存储cookie的示例_PHP教程

php使用curl存储cookie的示例_PHP教程

WBOY
WBOYOriginal
2016-07-13 10:34:581063Durchsuche

复制代码 代码如下:

$curl = curl_init();
$url = 'http://www.jb51.net/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.bkjia.comtruehttp://www.bkjia.com/PHPjc/747677.htmlTechArticle复制代码 代码如下: ?php $curl = curl_init(); $url = 'http://www.jb51.net/admin/gateway/login'; $data = array( 'username'='admin', 'password'='123' ); $cookie = tempnam('./t...
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn