<?php
$content = file_get_contents('https://distrowatch.com');
$pos = strpos($content, '<table class="News" style="direction: ltr"><tbody>');
$content = substr($content, $pos);
$pos = strpos($content, '</tbody></table>');
$content = substr($content, 0, $pos);
$content = str_replace('страницы','Linux', $content);
echo $content;
?>