在 PHP 中从 SFTP 服务器打开 CSV 文件
Opening a CSV file from SFTP server in PHP
我们目前从我们的服务器打开一个 csv,然后用这样的数据做一些事情:
$CSVfile = fopen('filename.csv', "r");
if($CSVfile !== FALSE) {
$count = 0;
while(! feof($CSVfile)) {
$data = fgetcsv($CSVfile, 5000, ",");
if ($count > 0 && !empty($data)) {
// Do something
}
}
}
我们需要更改系统,因为文件现在将托管在外部服务器上,因此我们需要通过 SFTP 进入它以检索文件。我已经安装了 phpseclib 并使连接正常工作,但它只是不断在屏幕上回显文件内容。我是这样设置的:
include 'vendor/autoload.php';
$sftp = new \phpseclib\Net\SFTP('SERVER');
if (!$sftp->login('USERNAME', 'PASSWORD')) {
exit('Login Failed');
} else {
$file = $sftp->fetch('FILE_LOCATION');
}
$CSVfile = fopen($file, "r");
if($CSVfile !== FALSE) {
$count = 0;
while(! feof($CSVfile)) {
$data = fgetcsv($CSVfile, 5000, ",");
if ($count > 0 && !empty($data)) {
// Do Something
}
}
}
如何让新系统读取文件内容并对其进行处理,而不是只显示所有文件内容?
正如@verjas 已经评论的那样,phpseclib 中没有fetch
方法。
如果要将文件下载为字符串,请使用SFTP::get
:
$contents = $sftp->get("/remote/path/file.csv");
然后您可以使用 str_getcsv
to parse the contents. According to a contributed note at the function documentation,应该这样做:
$data = str_getcsv($contents, "\n"); // parse the rows
foreach ($data as $line)
{
$row_data = str_getcsv($line); // parse the items in rows
}
我们目前从我们的服务器打开一个 csv,然后用这样的数据做一些事情:
$CSVfile = fopen('filename.csv', "r");
if($CSVfile !== FALSE) {
$count = 0;
while(! feof($CSVfile)) {
$data = fgetcsv($CSVfile, 5000, ",");
if ($count > 0 && !empty($data)) {
// Do something
}
}
}
我们需要更改系统,因为文件现在将托管在外部服务器上,因此我们需要通过 SFTP 进入它以检索文件。我已经安装了 phpseclib 并使连接正常工作,但它只是不断在屏幕上回显文件内容。我是这样设置的:
include 'vendor/autoload.php';
$sftp = new \phpseclib\Net\SFTP('SERVER');
if (!$sftp->login('USERNAME', 'PASSWORD')) {
exit('Login Failed');
} else {
$file = $sftp->fetch('FILE_LOCATION');
}
$CSVfile = fopen($file, "r");
if($CSVfile !== FALSE) {
$count = 0;
while(! feof($CSVfile)) {
$data = fgetcsv($CSVfile, 5000, ",");
if ($count > 0 && !empty($data)) {
// Do Something
}
}
}
如何让新系统读取文件内容并对其进行处理,而不是只显示所有文件内容?
正如@verjas 已经评论的那样,phpseclib 中没有fetch
方法。
如果要将文件下载为字符串,请使用SFTP::get
:
$contents = $sftp->get("/remote/path/file.csv");
然后您可以使用 str_getcsv
to parse the contents. According to a contributed note at the function documentation,应该这样做:
$data = str_getcsv($contents, "\n"); // parse the rows
foreach ($data as $line)
{
$row_data = str_getcsv($line); // parse the items in rows
}