如何更改 php 页面的编码?

发布于 2024-11-30 21:42:52 字数 416 浏览 0 评论 0原文

我试图将 php 文件的编码(通过另一个 php 页面)更改为 UTF-8 ,我的意思是没有编辑器。

我尝试使用 file_get_contentsfile_put_contents

我使用了这段代码,但它不起作用!

$text = file_get_contents('testencoding.php');
$text = mb_convert_encoding($text, "UTF-8");
file_put_contents('testencoding.php',$text);

仅当页面中存在“阿拉伯”字符时,上面的代码才有效。

谢谢,

Im trying to change the encoding of a php file (through another php page) to UTF-8 , i mean without editor .

i tried to use file_get_contents and file_put_contents .

i used this code but it doesn't work !

$text = file_get_contents('testencoding.php');
$text = mb_convert_encoding($text, "UTF-8");
file_put_contents('testencoding.php',$text);

this code above is working only if there is a "arabic" characters in the page.

Thanks,

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

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

发布评论

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

评论(2

jJeQQOZ5 2024-12-07 21:42:52

您必须为 mb_convert_encoding 函数指定 from_encoding

如果未指定 from_encoding它将使用内部编码

You must specify from_encoding for the mb_convert_encoding function.

If from_encoding is not specified, it'll use the internal encoding.

深海蓝天 2024-12-07 21:42:52

尝试:

$text = file_get_contents('testencoding.php');
file_put_contents('testencoding.php',utf8_encode($text));

如果不起作用,请尝试:

$text = file_get_contents('testencoding.php');
file_put_contents('testencoding.php',utf8_decode($text));

PS:如果有效,请考虑将答案标记为正确,tks:)

Try:

$text = file_get_contents('testencoding.php');
file_put_contents('testencoding.php',utf8_encode($text));

if it doesn't work, try:

$text = file_get_contents('testencoding.php');
file_put_contents('testencoding.php',utf8_decode($text));

PS: consider marking the answer as correct if it works, tks :)

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