<div class="tv_item" live="0" country="5">
<div class="tv_channel has-tip" title="Футбол 1">
<img src="//st1.soccer365.ru/s1/tv/226.png"/>
</div>
<div class="tv_start">
16:55 </div>
<div class="tv_programme">
Шахтёр - Заря. Чемпионат Украины. </div>
<div class="cl_both"></div>
</div>
Надо выбрать картинку, время и название.
$grab = file_get_contents( 'http://soccer365-1.xyz/tv/' );
if ($grab) {
preg_match_all("/<div class=\"tv_programme\">([^>]*>){12}([^<]*)/",$grab,$matches);
for ($i=0; $i<count($matches[2]); $i++) {
echo nl2br($matches[2][$i]);
echo '<br>';
}
}
Помогите в этом вопсросе. Спасибо.