检索和回显希腊字符问题

发布于 2024-10-19 02:28:11 字数 176 浏览 1 评论 0原文

假设我有一个像这样的字符串 - " Πρώτη θέση Δεύτερη θέση" 使用 php DOM 树,我搜索元素 td,并尝试回显 Πρώτη θέση 和 Δεύτερη θέση。尽管当我回应时,希腊字符并没有定期出现。相反,我得到了一些奇怪的符号!

我已经设置了适当的编码。我认为问题是在检索过程中引起的。

Lets say I have a string like this - " Πρώτη θέση Δεύτερη θέση"
Using php DOM tree I search for elements td and I am trying to echo Πρώτη Θέση and Δεύτερη Θέση. Although when I am echoing the Greek characters do not appear regularly. Instead I get some weird symbols!

I have already set the appropriate encoding. I think the problem is caused during the retrieval.

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

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

发布评论

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

评论(1

鲜肉鲜肉永远不皱 2024-10-26 02:28:11

以下代码对我有用!

<html>
<head><meta content="text/html; charset=UTF-8" http-equiv="content-type"></head>
<body>
<?php
   $string = "Πρώτη θέση Δεύτερη θέση";
   echo $string;
?>

</body>
</html>

干杯

the following code works for me!

<html>
<head><meta content="text/html; charset=UTF-8" http-equiv="content-type"></head>
<body>
<?php
   $string = "Πρώτη θέση Δεύτερη θέση";
   echo $string;
?>

</body>
</html>

Cheers

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