如何格式化重音字母(如法语字母)?
我创建了一个 php 文件来回显法语文本,并在 ajax 文件(responseText)中使用该文本。我的问题是,当使用 javascript 中的 ajax 函数时,我必须将法语响应文本显示到警报中;因此存在重音字母的问题,例如“à”或“é”。在 HTML 中,我们使用 é
来格式化“é”。那么如何在 PHP 中格式化“é”和“à”以便我可以在 javascript 和 ajax 中使用它们?
I created a php file to echo a french text , and I use this text in an ajax file ( the responseText ) . My problem is that when using the ajax function from javascript then I must show the french responseText into an alert ; so there is the problem of accentuated letters such as "à" or "é". In HTML we use é
to format "é". So how to format "é" and "à" in PHP so that I can use them in javascript and ajax ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 UTF-8 进行 php 文件编码并按常规方式键入。
Use UTF-8 for php file encoding and type it in usual way.
或者您可以在 PHP 字符串上使用 htmlentities()。
Or you can use htmlentities() on your PHP string.