<?php
require 'phpQuery.php';
$omaURL = file_get_contents('https://www.oma.by/catalog/');
$omaParse = phpQuery::newDocument($omaURL);
$hentry = $omaParse->find('.page-main');
echo $hentry;
require 'phpQuery.php';
$omaURL = file_get_contents('https://toster.ru/');
$omaParse = phpQuery::newDocument($omaURL);
echo $omaParse;
$omaParse = phpQuery::newDocument($omaURL, 'utf-8');
$omaParse = phpQuery::newDocument('<meta charset="utf-8">' . $omaURL);