Не получается у меня что-то. Есть вот такой код
<tbody>
<tr><td class="h-part" colspan="3">Подача</td>
</tr><tr class="odd">
<td class="summary-vertical fl" style="padding-right: 0px; border-top: 0px;"><div style="float: left;">4</div>
Хочу вытянуть цифру 4
пробовал так
<?$text = file_get_contents( 'https://www.scoreboard.com/ru/match/duan-ying-ying-kozlova-kateryna-2018/8ll7rBG1/#match-summary|match-statistics;0' );
preg_match( '/<div style="float: left;">(.*?)<\\/div>/is' , $text , $title );
echo $title[1];?
Добавлено через 06:09 сек.
и так
<?include('simple_html_dom.php');
$html = file_get_html('https://www.scoreboard.com/ru/match/duan-ying-ying-kozlova-kateryna-2018/8ll7rBG1/#match-summary|match-statistics;0');
foreach($html->find('div[style=float: left;]') as $e)
echo $e->plaintext. '<br>';?>
Изменил: facece (31.01.2018 / 21:14)