I have some UTF-8 content that includes multi-byte smart quote characters. I\'ve found that this code will easily convert those characters to ASCII straight quotes (ASCII co
You're looking for CP-1252 which contains "curly quotes" at 0x91-0x94 (145-148).
$content = iconv("UTF-8", "cp1252//TRANSLIT", $content);