SFTP上的文件在开头显示附加字符

时间:2018-12-28 12:43:26

标签: php symfony csv sftp phpseclib

我在symfony 3.4中有一个函数,该函数抛出文件中不存在的字符:

use Exception;
use phpseclib\Net\SFTP;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\VarDumper\VarDumper;

public static function getInfoFile(string $fileName, ContainerInterface $container)
{
    $host = $container->getParameter('host');
    $sftp = new SFTP($host);
    if (!$sftp->login($container->getParameter('user'), $container->getParameter('pass'))) {
        throw new Exception('Cannot connect to ' . $host);
    }
    $file = $sftp->get("/info/$fileName");

    vardumper::dump($file); // See Response below

    $file = preg_split('/\R/', $file);
    reset($file);

    // vardumper::dump($file); // This would now return each array element prepended with b"""

    return $file;
}

这将返回:

  

第30行的Service.php:b“”“ A; B; C; D; E; F \ r \ n 1; 2; 3; 4; 5; 6 \ r \ n

此b“”“在文件中不存在。我尝试使用Notepad ++和Excel打开,但看不到。

当我尝试对此使用substr时,b“”“停留并且真实文件被剪切。

我在做什么错? 我想将每行的csv文件读入一个没有这些神秘b“”“

的数组中

1 个答案:

答案 0 :(得分:2)

我找到了解决方案。...

$file = $sftp->get("/info/$fileName");
$file = mb_convert_encoding($file, "UTF-8", "ISO-8859-15" ); // Add this

问题出在编码上。