从文本区域标签编码

发布于 2024-11-25 11:01:03 字数 247 浏览 0 评论 0原文

假设在表单中,您在文本

区域中输入字符 "ぎ" 在提交文本并将其发送到另一个将处理它的页面时(即 action="site.php “): 发送文本的页面会对该文本进行编码吗? 或者接收文本的页面?

要点是:表单发送编码的字符(字节序列)或要由从表单接收该文本的页面编码的字符。

发送表单时页面是否会再次编码? 因为将要输入的文本不是之前编码的源代码的一部分。

Suppose in a form, you type within a textarea the character "ぎ"

At the momment of submit the text and send it to another page that will process it (i.e. action="site.php"):
Will the page that send the text encode that text?
or the page that recieve the text?

The point is: the form send the characters encoded(sequences of bytes) or characters to be encoded by the page that recieve that text from the form.

Is the page encoded again when is going to be sended a form?
Cuz the text that will be typed is not part of the source code previously encoded.

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

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

发布评论

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

评论(2

始终不够爱げ你 2024-12-02 11:01:03

您需要 UTF8 编码,

请查看 utf8_encode()utf8_decode()

您还需要研究多字节安全函数

You'll want to UTF8 encode that

Look at utf8_encode() and utf8_decode()

You'll also want to look into multibyte-safe functions

情深缘浅 2024-12-02 11:01:03

发送文本的页面负责编码,您指定的编码可以通过元字符集进行更改。

The page that sends the text is in charge of the encoding, which as you specify can by changed by the meta charset.

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