2

我正在尝试解析 html,并且我有一个带有奇怪引号的字符串:

‘3’

如何将他们的字符编码转换为常规'

4

1 回答 1

3

无耻地从Convert Smart Quotes 中恢复正常

<?php
function convert_smart_quotes($string) {
    //converts smart quotes to normal quotes.
    $search = array(chr(145), chr(146), chr(147), chr(148), chr(151));
    $replace = array("'", "'", '"', '"', '-');
    return str_replace($search, $replace, $string);
}
?>

通过以下方式找到:“php convert curly quotes”

于 2013-01-21T09:04:53.187 回答