I am having big problems solving this problem:
I have a mysql latin1_swedish_ci database encoding and a table that stores names and addresses.
I am trying to output a UTF-8 XML file, but I am having problems with the following line:
OtivägenIt is displayed as Otivägenwhen I vim the file. Also when opening IE I get
" An invalid character was found in text content. Error processing resource"
I have the following code:
function fixEncoding($in_str)
{
$cur_encoding = mb_detect_encoding($in_str) ;
if($cur_encoding == "UTF-8" && mb_check_encoding($in_str,"UTF-8"))
return $in_str;
else
return utf8_encode($in_str);
}
header("Content-type: text/plain;charset=utf-8");
$mystring = "Otivägen"
$myxml = "<myxml>
....
<node>".$mystring."</node>
....
</myxml>
";
$myxml = fixEncoding($myxml);
Actual XML output is below:
<?xml version="1.0" encoding="UTF-8" ?>
<myxml>
....
<node>Otivägen</node>
....
</myxml>
Any ideas how I can output the file, so in the vim the file reads Otivägen, not Otivägen?
EDIT:
I did mysql_client_encoding()and got latin1
I then did mysql_set_charset()
and ran again mysql_client_encoding()and got utf8, but still the same output problems.
Edit 2
I went to the command line and ran a query SELECT address1 FROM address WHERE id = 1000;
SELECT address1 FROM address WHERE id = 1000;
Current database: ftpuser_db
+
| address1 |
+
| Otivägen 32 |
+
1 row in set (0.06 sec)
Thanks in advance!