classdefine.php content:
<?php
class classtemp{
public function printtemp(){
$temp="中文字符";
echo $temp;
}
}
?>work.php content(页面使用的是utf8字符集):
<?php
$temp=new classtemp;
$temp->printtemp();
?>
运行ie之后显示乱码。