不好意思,如标题说的,小弟遇到一个转码的问题
想请教一下
以下为程式码
<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; 所出来的就会变乱码…
这该怎么解决呢 ??