Skip to content

Instantly share code, notes, and snippets.

@dev101
dev101 / cianparse.php
Created August 26, 2016 11:42
Cian parse
foreach($html->find('tr.offer_container') as $tr) {
$el = $tr->find('td.objects_item_info_col_2', 0);
$rooms = is_object($el) ? intval($el->plaintext) :'';
$station = [];
$el = $tr->find('div.objects_item_metro', 0);
if ($el) {
preg_match('@м\. ([^\s]+)\s+(\d+)\s+мин\.\s+(.+?)\s*$@', $el->plaintext, $station);
} else {
$station = false;
}