不好意思,如標題說的,小弟遇到一個轉碼的問題
想請教一下
以下為程式碼
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<?php
include('simple_html_dom.php');
$dom = file_get_html('http://na3tvilla.ttbnb.net/about.htm');
foreach($dom->find('table.abfont') as $element)
echo $element->innertext;
$dom = file_get_html('http://na3tvilla.ttbnb.net/about.htm');
foreach($dom->find('title') as $ment)
echo $ment->innertext;
?>
這樣執行出來後 echo $ment->innertext; 所出來的會是亂碼
但要是我把最上面 head裡的編碼拿掉 就會變中文
但是 echo $element->innertext; 所出來的就會變亂碼…
這該怎麼解決呢 ??