<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
  <title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
Dave,<br>
<br>
Thanks, that worked perfect using the en_US.utf8 locale.<br>
<br>
I wonder if Drupal's changing of the LC_CTYPE should be documented
better since this breaks charset conversions and causes these two
functions (iconv() and mb_set_encoding()) to not function as they
should.<br>
<br>
I also wonder if we should create a drupal_change_encoding() function
that resets the locale, does the conversion, and sets the locale back
to make life easier for those who don't know about the LC_CTYPE change.<br>
<br>
Brian<br>
<br>
Dave Reid wrote:
<blockquote
 cite="mid:81cb29fd0911160814x44c2a7ebheb2b576476428b71@mail.gmail.com"
 type="cite">It's because of the call to setlocale(LC_CTYPE, 'C'); in
_unicode_check() in includes/unicode.inc.<br>
  <br>
>From <a moz-do-not-send="true"
 href="http://www.php.net/manual/en/function.iconv.php#86077">http://www.php.net/manual/en/function.iconv.php#86077</a>
I tried doing the following and it worked for me (very important to
note setting back the original value to setlocale().<br>
  <br>
setlocale(LC_CTYPE, 'fr_FR.utf8');<br>
$string = "St&eacute;phanie,D H&eacute;rouville";<br>
$output = iconv("UTF-8", 'ASCII//TRANSLIT', $string);<br>
print $output;<br>
setlocale(LC_CTYPE, 'C');<br>
  <br>
I'm not sure which locale string you'd use in the first call to
setlocale (I used French in this case) but you can get all the values
on your system by running
locale -a from the command line.<br>
  <br clear="all">
Dave Reid<br>
  <a moz-do-not-send="true" href="mailto:dave@davereid.net">dave@davereid.net</a>
</blockquote>
<br>
</body>
</html>