如何在php中修剪引号并删除单词中的特殊字符

发布于 2024-10-17 18:16:01 字数 155 浏览 2 评论 0原文

我们如何修剪引号(单引号和双引号)。在某些单词中,有一些像 � 这样的字符我想删除。如何在 php 中做到这一点?示例单词 我想将

  1. poup�e 重新格式化为 poupe 或者什么 � 应该是
  2. “三到三个
  3. 单词”到单词

how do we trim quotes(single and double). And there are some character like � in some words which i want to remove. How to do it in php. example words i want to reformat

  1. poup�e to poupe or what that � should have been
  2. “three to three
  3. words" to words

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

情何以堪。 2024-10-24 18:16:01

poup�e 应该是 poupée。按照建议,修复您的编码而不是破坏法语单词:-)

poup�e should be poupée. As suggested, fix your encoding instead of destroying french words :-)

去了角落 2024-10-24 18:16:01

您可以删除引号,

$word=trim($word, '"');

在我看来,出现奇怪的字符是因为您遇到了编码问题。为了解决这个问题,我们需要知道你的程序、数据库和html使用哪种编码。我建议到处使用UTF-8,这基本上可以解决你的编码问题。

You can remove the quotes with

$word=trim($word, '"');

Seems to me that the strange characters appear because you have an encoding issue. For solving this, we need to know what kind of encoding do you use in your program, database, and html. I suggest using UTF-8 everywhere, which will basically solve your encoding problems.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文