Добрый день. есть div на странице
<div class="vcw-number ng-binding" ng-style="style.main" ng-bind="currency_ + ' ' + price" style="color: rgba(0, 0, 0, 0.87); background-color: rgb(255, 255, 255);"> 576,064</div>
Как получить значение которое находится в div.
$href = 'http://url/1580-2/';
$page = file_get_contents($href);
preg_match("/<div.*class=\"vcw-number.*ng-binding\".*\ng-style=\"style.man\".*ng-bind=\"currency_.*+.*'.*'.*+.*price\".*style=\"color:.*rgba(0,.*0,.*0,.*0.87);.*background-color:.*rgb(255,.*255,.*255);\">(.*)<\/div>/",$page,$match);
echo $match[1];
По сути хочу спарстить курсы валют.