Brian,<br><br>Might want to take a look at <a href="http://www.php.net/manual/en/function.iconv.php#86077">http://www.php.net/manual/en/function.iconv.php#86077</a><br><br clear="all">Dave Reid<br><a href="mailto:dave@davereid.net">dave@davereid.net</a><br>

<br><div class="gmail_quote">On Mon, Nov 16, 2009 at 9:42 AM, Brian Vuyk <span dir="ltr">&lt;<a href="mailto:brian@brianvuyk.com">brian@brianvuyk.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">

Hi all.<br>
<br>
I am having a bit of a unique problem here, and I am hoping someone can help me out.<br>
<br>
In short, we are outputting strings from a custom module we wrote to an external service that only accepts the ASCII character set. So, I am trying to run all the strings through iconv() to convert them.<br>
<br>
Here&#39;s the weird part. Take the script below:<br>
<br>
$string = &quot;Stéphanie,D Hérouville&quot;;<br>
$output = iconv(&quot;UTF-8&quot;, &#39;ASCII//TRANSLIT&#39;, $string);<br>
print $output;<br>
<br>
If I run this from the command line, I get the proper output - &#39;Stephanie D Herouville&#39;. However, if I run it in my Drupal installation, whether as part of a module or from the Devel &#39;Execute PHP&#39; box, I get different output: &#39;St?phanie D H?rouville&#39;. That is, instead of replacing the character with it&#39;s expected ASCII counterpart, it replaces it with a ?.<br>


<br>
Has anyone encountered this, or have any idea why this is happening?<br><font color="#888888">
<br>
Brian<br>
</font></blockquote></div><br>