PHP code example of atrox / matcher
1. Go to this page and download the library: Download atrox/matcher library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once ('vendor/autoload.php' );
atrox / matcher example snippets
use Atrox \Matcher ;
$m = Matcher::multi('//div[@id="siteTable"]/div[contains(@class, "thing")]' , [
'id' => '@data-fullname' ,
'title' => './/p[@class="title"]/a' ,
'url' => './/p[@class="title"]/a/@href' ,
'date' => './/time/@datetime' ,
'img' => 'a[contains(@class, "thumbnail")]/img/@src' ,
'votes' => (object) [
'ups' => '@data-ups' ,
'downs' => '@data-downs' ,
'rank' => 'span[@class="rank"]' ,
'score' => './/div[contains(@class, "score")]' ,
],
])->fromHtml();
$f = file_get_contents('http://www.reddit.com/' );
$extractedData = $m($f);
[
[
"id" => "t3_1ep0c5" ,
"title" => "Obligatory funny cat pictures." ,
"url" => "http://imgur.com/sGu0pEk" ,
"date" => "2013-05-20T14:16:24+00:00" ,
"img" => "http://e.thumbs.redditmedia.com/MZjtg3UnZ8MOVjcd.jpg" ,
"votes" => (object) [
"ups" => "115036" ,
"downs" => "10266" ,
"rank" => "1" ,
"score" => "105650"
]
],
[
...
]
]
$postMatcher = Matcher::single('.//div[@class="postInfo desktop"]' , [
'id' => './input/@name' ,
'name' => './span[@class="nameBlock"]/span[@class="name"]' ,
'date' => './span/@data-utc' ,
]);
$m = Matcher::multi('//div[@class="thread"]' , [
'op' => Matcher::single('./div[@class="postContainer opContainer"]' , $postMatcher),
'replies' => Matcher::multi('./div[@class="postContainer replyContainer"]' , $postMatcher)
])->fromHtml();
$f = file_get_contents('http://boards.4chan.org/po/' );
$extractedData = $m($f);
[
[
"op" => [
"id" => "481874858" ,
"name" => "Anonymous" ,
"date" => "1369242761"
],
"replies" => [
[
"id" => "481879347" ,
"name" => "moot" ,
"date" => "1369244554"
],
...
]
],
[
...
],
...
]
$html5 = new Masterminds\HTML5(['disable_html_ns' => true ]);
$dom = $html5->loadHTML($html);
$m = Matcher::single('//h1' );
$title = $m($dom);