i Kıvrılmaları kullanarak Rus dili ile utf-8 sayfa olsun. i metni echo eğer iyi gösteriyor. sonra ben böyle kod kullanmak
$dom = new domDocument;
/*** load the html into the object ***/
@$dom->loadHTML($html);
/*** discard white space ***/
$dom->preserveWhiteSpace = false;
/*** the table by its tag name ***/
$tables = $dom->getElementsByTagName('table');
/*** get all rows from the table ***/
$rows = $tables->item(0)->getElementsByTagName('tr');
/*** loop over the table rows ***/
for ($i = 0; $i <= 5; $i++)
{
/*** get each column by tag name ***/
$cols = $rows->item($i)->getElementsByTagName('td');
echo $cols->item(2)->nodeValue;
echo '<hr />';
}
$ Html rusça metin içeriyor. Bu hat echo $cols->item(2)->nodeValue; ekran hatası metin, rusça sonra değil. i iconv denemek ama çalışmıyor. herhangi bir fikir?