Home > Backend Development > PHP Tutorial > html字符转义问题

html字符转义问题

WBOY
Release: 2016-06-06 20:48:56
Original
1218 people have browsed it

我有这么一段代码:

<code>#include <stdio.h>
int main(int argc, char *argv[])
{
     printf("%d", a + b);
}
</stdio.h></code>
Copy after login
Copy after login

我先用htmlspecailchars处理后存入数据库,得到如下形式的代码:

<code>#include <stdio.h>
int main(int argc, char *argv[])
{
     printf("%d", a + b);
}
</code>
Copy after login
Copy after login

然后我从数据库读出来,并且用htmlspecialchars_decode解码后输出到一个div中,得到的是如下的结果:

<code>#include <stdio.h>
int main(int argc, char *argv[])
{
     printf("%d", a + b);
}
</code>
Copy after login
Copy after login

我想要的结果是最后显示在html页面中的代码和我输入的代码一样的,请问我的处理步骤哪里除了问题?谢谢

回复内容:

我有这么一段代码:

<code>#include <stdio.h>
int main(int argc, char *argv[])
{
     printf("%d", a + b);
}
</stdio.h></code>
Copy after login
Copy after login

我先用htmlspecailchars处理后存入数据库,得到如下形式的代码:

<code>#include <stdio.h>
int main(int argc, char *argv[])
{
     printf("%d", a + b);
}
</code>
Copy after login
Copy after login

然后我从数据库读出来,并且用htmlspecialchars_decode解码后输出到一个div中,得到的是如下的结果:

<code>#include <stdio.h>
int main(int argc, char *argv[])
{
     printf("%d", a + b);
}
</code>
Copy after login
Copy after login

我想要的结果是最后显示在html页面中的代码和我输入的代码一样的,请问我的处理步骤哪里除了问题?谢谢

HTML转义:

  • & = &
  • " = "

所以你的"是被转了两次:

  1. 第一次将"转为"
  2. 第二次将"的第一个&转为&

为什么被转换了两次由于没有代码无从查起,但保底的解决方案是调用两次htmlspecialchars_decode

我觉得你在存入数据库的之前应该是做了两次htmlspecailchars? 走查下代码看看

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template