避免“在 PHP 或 JS 中

发布于 2024-12-10 10:27:22 字数 232 浏览 0 评论 0原文

我的编码有问题(我猜)。我的脚本通过 ajax 获取生成 JSON 文件的 php。我认为 JSON 是(在 firebug 中看到)

["“This is a word” This not"]

并且我想删除 &#8220。有什么方法可以删除它(在 php 或 js 中,没关系)

提前致谢。

I have a problem with the encodification (i guess). My script gets by ajax a php that generates a JSON file. The think that the JSON is (seen in firebug)

["“This is a word” This not"]

And I wanna to remove . Is there any way to remove this (in php or js, does not matter)

Thanks in advance.

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

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

发布评论

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

评论(2

记忆消瘦 2024-12-17 10:27:22

对于 javascript,您可以使用:

var src = "“This is a word” This not";
src = src.replace(/“/gi, "");

对于 php,您可以使用:

$src = "“This is a word” This not";
$src = str_replace("“", "", $src);

For javascript, you can use:

var src = "“This is a word” This not";
src = src.replace(/“/gi, "");

For php, you can use:

$src = "“This is a word” This not";
$src = str_replace("“", "", $src);
等风也等你 2024-12-17 10:27:22
["“This is a word” This not"]

只是用 JSON 编码的一个字符串。如果您想删除字符串的该部分(或字符串的 JSON),您可以使用 JSON 创建字符串,然后使用 javascript 函数替换来删除

试试这个:

var response = ["“This is a word” This not"];
response.replace(/“/g, "");

如果你真的想要 JSON 格式(我对此表示怀疑),你可以将其返回:

var response_json = JSON.stringify(response);  
["“This is a word” This not"]

is just one string encoded in JSON. If you want to remove that part of the string (or JSON for the string), you could create the string with the JSON and then use the javascript function replace to remove .

Try this:

var response = ["“This is a word” This not"];
response.replace(/“/g, "");

if you actually want it in JSON (which I doubt) you could then turn it back:

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