PHP - FTP filename encoding issue(PHP - FTP文件名编码问题)
问题描述
我会很简短.我的 FTP 函数返回错误的文件名编码
I will be brief. My FTP function returns wrong encoding of filenames
$conn_id = ftp_connect("site.com");
ftp_login($conn_id, "login", "pass");
ftp_pasv($conn_id, true);
$buff = ftp_nlist($conn_id, "./");
print_r($buff);
-> // result
array() {
[0]=> "��.txt"
}
文件名采用 Windows-1251 编码.
The file name has Windows-1251 encoding.
我尝试通过 nodejs 连接到 FTP,但它也返回了一些令人毛骨悚然的东西——òð.txt
.
I tried to connect to FTP via nodejs but it also returns something creepy — òð.txt
.
我的桌面客户端 (WinSCP) 可以正常工作.
My desktop client (WinSCP) however works fine with this.
PS:我尝试使用 utf8_encode - 但这也不适合我.
PS: I tried to use utf8_encode - but that's also not working for me.
推荐答案
如果编码是你可以尝试使用 mb_convert_encoding.下面的代码应该输出正确的值.
If the encoding is of you could try to change it using mb_convert_encoding. The code below should output the correct value.
<?php
echo mb_convert_encoding($buff[0], "UTF-8");
//or
echo mb_convert_encoding($buff[0], "UTF-8", "windows-1251");
?>
如果它不起作用,您可以尝试使用类似的方法找到正确的编码
If it doesnt work, you can try to find the right encoding using something like
<?php
foreach(mb_list_encodings() as $chr){
echo mb_convert_encoding($buff[0], 'UTF-8', $chr)." : ".$chr."<br>";
}
?>
这篇关于PHP - FTP文件名编码问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:PHP - FTP文件名编码问题


- Mod使用GET变量将子域重写为PHP 2021-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- 正确分离 PHP 中的逻辑/样式 2021-01-01
- 从 PHP 中的输入表单获取日期 2022-01-01
- 带有通配符的 Laravel 验证器 2021-01-01
- SoapClient 设置自定义 HTTP Header 2021-01-01
- 没有作曲家的 PSR4 自动加载 2022-01-01
- 如何定位 php.ini 文件 (xampp) 2022-01-01
- PHP Count 布尔数组中真值的数量 2021-01-01
- Laravel 仓库 2022-01-01