Skip to content

Instantly share code, notes, and snippets.

View ZeroxBit's full-sized avatar
🎯
Focusing

Carlos Sánchez ZeroxBit

🎯
Focusing
  • Tinnto
  • Perú
View GitHub Profile
@ZeroxBit
ZeroxBit / php-webscraping.md
Created May 19, 2018 23:40 — forked from anchetaWern/php-webscraping.md
web scraping in php

Have you ever wanted to get a specific data from another website but there's no API available for it? That's where Web Scraping comes in, if the data is not made available by the website we can just scrape it from the website itself.

But before we dive in let us first define what web scraping is. According to Wikipedia:

{% blockquote %} Web scraping (web harvesting or web data extraction) is a computer software technique of extracting information from websites. Usually, such software programs simulate human exploration of the World Wide Web by either implementing low-level Hypertext Transfer Protocol (HTTP), or embedding a fully-fledged web browser, such as Internet Explorer or Mozilla Firefox. {% endblockquote %}