https://github.com/rasitds/php-pesdb-scraper
https://github.com/rasitds/php-pesdb-scraper
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/rasitds/php-pesdb-scraper
- Owner: rasitds
- License: mit
- Created: 2021-10-09T08:52:25.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-11-30T13:16:33.000Z (over 4 years ago)
- Last Synced: 2025-04-06T20:48:15.962Z (about 1 year ago)
- Language: PHP
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PHP PesDB Scraper
PHP PesDB Scraper Class helps you to scrape pesdb data from html source.
### Example
```php
require_once("pesdb.class.php");
$pes_year = "2019";
$max_page_number = 400;
$pes = new PesDB($pes_year);
for ($i = 1; $i < $max_page_number; $i++) {
$pes->printData($i);
}
```