thanks_
but i try this:
function utf8_encode_array (&$array, $key) {
if(is_array($array)) {
array_walk ($array, 'utf8_encode_array');
} else {
$array = utf8_encode($array);
}
}
The content is encoded but when I choose UTF8 encoding to view in browser, it didn't show me the correct content >_<