我在使用ascii表翻译字符时遇到问题。 示例罕见的引号,如“或”或“
部分代码
$txt = str_replace(chr(147), '"', $txt ); // left double quote
有人可以知道到底是什么,似乎你找不到字符串中的字符
答案 0 :(得分:0)
这可以帮助您解决任何问题:
<?php
/* to avoid diamond shaped / garbled character output in browser
make the browser uses the correct encoding. Use a header.
*/
header("Content-Type: text/html; charset=ISO-8859-1");
$chr = chr(147);
echo 'replacing ' . $chr . ' in target string.' . '<br />';
$txt = 'sometext' . $chr . 'andthensomemore' . $chr . 'andterminate';
echo 'BEFORE : ' . $txt . '<br />';
$txt = str_replace($chr, '"', $txt );
echo 'AFTER : ' . $txt;
?>