我正在尝试解析 html,并且我有一个带有奇怪引号的字符串:
‘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”。