HP Forum PHP Forum collection program simulation login, crawl page implementation code

Source: Internet
Author: User
Copy CodeThe code is as follows:


Wu Yanjun
2009-06-27
Collection program PHP
Set_time_limit (0);
Cookie Save Directory
$cookie _jar = '/tmp/cookie.tmp ';
/* Function------------------------------------------------------------------------------------------------------------ */
Simulating request data
function request ($url, $postfields, $cookie _jar, $referer) {
$ch = Curl_init ();
$options = Array (Curlopt_url = $url,
Curlopt_header = 0,
Curlopt_nobody = 0,
Curlopt_port = 80,
Curlopt_post = 1,
Curlopt_postfields = $postfields,
Curlopt_returntransfer = 1,
Curlopt_followlocation = 1,
Curlopt_cookiejar = $cookie _jar,
Curlopt_cookiefile = $cookie _jar,
Curlopt_referer = $referer
);
Curl_setopt_array ($ch, $options);
$code = curl_exec ($ch);
Curl_close ($ch);
return $code;
}
Get a list of posts
function Getthreadslist ($code) {
Preg_match_all ('/

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.