Делаю парсинг таблицы с одного сайта, в одном из столбцов таблицы есть текст которые как ссылка вида
<td class=""><a href="/lang/info/pdf/длиный код" target="_blank">PDF</a></td>
После парсинга выводится только текст без контента, мой код
$url = 'site.com';
include 'simple_html_dom.php';
$html = file_get_html($url);
$table = $html->find('table', 0);
$rowData = array();
foreach($table->find('tr') as $row) {
// initialize array to store the cell data from each row
$flight = array();
foreach($row->find('td') as $cell) {
// push the cell's text to the array
$flight[] = $cell->plaintext;
}
$rowData[] = $flight;
}