My PHP application changes my apostrophe character to �

What is my crime?

link|improve this question

63% accept rate
2  
The new tag I added explains it all. ;) – Stephen Feb 21 '11 at 19:57
3  
Encoding ignorance strikes again. Well, and "fancy" quotes. – delnan Feb 21 '11 at 19:57
2  
is it an ' (apostrophe) or one of the characters that just looks like it is, word is known for this evil – Dagon Feb 21 '11 at 19:59
2  
Copying from MS Word is the root of all evil in non-Unicode enviornments... and HTML. – Brad Feb 21 '11 at 20:05
1  
@Brad: MS Word is the root of all evil. FIFY. – Rocket Feb 21 '11 at 20:08
show 3 more comments
feedback

2 Answers

Click the Microsoft Office Button , and then click Word Options.

Click Proofing, and then click AutoCorrect Options.

In the AutoCorrect dialog box, do the following:

Click the AutoFormat As You Type tab, and under Replace as you type, select or clear the "Straight quotes" with “smart quotes” check box.

Click the AutoFormat tab, and under Replace, select or clear the "Straight quotes" with “smart quotes” check box.

oh if you must:

<?php 

function convert_smart_quotes($string) 
{ 
$search = array(chr(145), 
                chr(146), 
                chr(147), 
                chr(148), 
                chr(151)); 

$replace = array("'", 
                 "'", 
                 '"', 
                 '"', 
                 '-'); 

return str_replace($search, $replace, $string); 
} 

?>

alternative replace to keep them for people like David Harkness

<?php 

$replace = array('&lsquo;', 
             '&rsquo;', 
             '&ldquo;', 
             '&rdquo;', 
             '&mdash;'); 

?>
link|improve this answer
2  
I hate smart quotes. – Rocket Feb 21 '11 at 20:11
1  
we ALL do :-) but word is still common. – Dagon Feb 21 '11 at 20:12
1  
I hate straight quotes. They are ugly and easily avoided. You can use iconv() in PHP to transform curly quotes into the correct replacement for your encoding. – David Harkness Feb 21 '11 at 20:49
feedback

You will want to make sure your server is sending the UTF-8 character set on the Content-Type header. The curly quotes use more than one byte so you need an appropriate charset to reflect that. If your server is not sending the charset in the header, most browsers will assume you are using the standard ISO-8859 charset that only uses one byte per character which would show in that you are getting 3 characters from only one character that you inputted.

If you use Apache, you should set your default character set like so in the httpd.conf:

AddDefaultCharset UTF-8

If you do not have access to your server configuration, you can send a header from php before any content is outputted.

header('Content-Type: text/html; charset=UTF-8');
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.