Monday 4 March 2019

screen scraping technique using php



How to screen scrape a particular website. I need to log in to a website and then scrape the inner information.
How could this be done?



Please guide me.




Duplicate: How to implement a web scraper in PHP?


Answer



You want to look at the curl functions - they will let you get a page from another website. You can use cookies or HTTP authentication to log in first then get the page you want, depending on the site you're logging in to.



Once you have the page, you're probably best off using regular expressions to scrape the data you want.


No comments:

Post a Comment

php - file_get_contents shows unexpected output while reading a file

I want to output an inline jpg image as a base64 encoded string, however when I do this : $contents = file_get_contents($filename); print &q...