English 中文(简体)
曲线多控点和 cookie
原标题:curl multi handle and cookies
  • 时间:2012-05-27 07:03:03
  •  标签:
  • php
  • curl

我的代码通过 curl_init 创建基本卷轴处理程序, 然后设置一些选项 。 然后, 我正使用此把手登录某些网站 。 我工作得很好 。 当我登录入帐时, 我希望能访问网站上仅供登录的 Int 用户使用的一些资源 。 但我想使用 curl_ multi 进行模拟操作 。

因此,在我登录后,在我登录的控点上使用 curl_opy_handle 之后,我为复制控点设置了新的 URL, 并将复制控点添加到卷曲多控点 。

然后我执行卷轴多控控点 - 它没有错误地工作,但无法访问成员资源 - 看起来卷轴_copy_handle () 无法复制曲奇 吗?

如何复制所有曲奇( 登录时设置)?

我在这里没有粘贴代码, 因为它有效, 我只是需要方法, 与多个把手分享饼干。

最佳回答

假设您拥有正确的 cookie 值, 从文档中可以使用 CURLOPT_ COOKIE 值的 curl_setoppt 来设定请求的值 。

curl_setopt($curlhandle, CURLOPT_COOKIE, "Name=Value");

"http://us.php.net/manual/en/conference.curl-setopt.php" rel="no follow" >curl-setopt 函数

所以在进行 curl_copy_handle 之前,请在您的手柄上拨打这个电话。 (还有 CURLOPT_COOKIIIFILE 来指定您保存的饼干 。)

我从来没有用过这个自己虽然。

问题回答

与 CURLOPT_ CoOKIEJAR 和 CURLOPT_ CoOKIEIFILE 在您的卷轴内玩耍。





相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签