irfan-dahir / skraypar
This package is abandoned and no longer maintained.
No replacement package was suggested.
Scraper with pattern parsing
dev-master
2018-06-24 04:00 UTC
Requires
- guzzlehttp/guzzle: ^6.3
This package is not auto-updated.
Last update: 2020-01-23 10:16:05 UTC
README
Developing as a core parsing feature of (but not limited to) the Jikan API as a separate abstraction class.
Work in Progress
Installation
- This library uses Composer, install that first.
composer require irfan-dahir/skraypar
Usage
<?php require 'vendor/autoload.php'; class Parser extends \Skraypar\Skraypar { public function loadRules() { // Abstract function $this->addRule( 'anime_url', // used as a hash key '~<meta property="og:url" content="(.*?)">~', // Pattern to match function() { // Function to execute when matched /* * $this->matches // output of pattern match * $this->line // current line * $this->lineNo // current line no. * $this->file // All lines in an array */ var_dump($this->matches); } ); // Add more Rules here } } $parser = new Parser; $parser->setPath('http://myanimelist.net/anime/1'); $parser->loadFile(); $parser->loadRules(); $parser->parse();
Outputs
array (size=2)
0 => string '<meta property="og:url" content="https://myanimelist.net/anime/1/Cowboy_Bebop">' (length=79)
1 => string 'https://myanimelist.net/anime/1/Cowboy_Bebop' (length=44)
Dependencies
Donate
If you found this useful, please feel free to donate!