Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我现在正在使用 stripslashes()、str_replace() 和 htmlentities()。什么都能完成工作。
一件奇怪的事情是,客户端在一些用“...”描述的文本中暂停。当它显示在浏览器上时,它显示为问号图形。有谁知道如何只显示...?他们可以分享答案吗?
示例:船长,如果我们不与他们作战,他们……会杀了我们俩。
提前致谢!
似乎有人使用“...”作为单个 unicode 字符。尝试这个:
$string = str_replace("…", "...", $string);
您的 PHP 文件必须以 Unicode 格式保存才能正常工作。