Heim >Backend-Entwicklung >PHP-Tutorial >curl模拟登陆什么意思?

curl模拟登陆什么意思?

WBOY
WBOYOriginal
2016-06-23 14:20:501080Durchsuche

curl php模拟登陆

一直听说php curl模拟登陆,但一直不知道什么意思?是将本网站的用户名和密码,通过socket发送到另一个网站实现登陆吗?求详解.......

回复讨论(解决方案)

你不是已经知道了吗

将本网站的用户名和密码,通过socket发送到另一个网站实现登陆
这个是SSO
也是模拟登陆的一种

模拟登陆是将用户名和密码,通过socket发送到网站实现登陆

我也只是猜测他是那么实现的,现在得到确定,非常感谢!

模?登?的步?:
$url ='你的登??面';
$user_login='';
$user_password='';
$loginfields = "user_login=$user_login&user_password=$user_password";
$ch = curl_init();
curl_setopt($ch, CURLOPT_POST, 0); //set how many paramaters to post
curl_setopt($ch, CURLOPT_URL,$url); //set the url we want to use
curl_setopt($ch, CURLOPT_POSTFIELDS,$loginfields); //set the field 
$data = curl_exec($ch); //execute and get the results
curl_close ($ch);
通????站外的php,模?有人填?了用?名和密?,然後提交?系?.

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