-2

编辑:最初我简化了原始 csv 文件(从com1_webscrapersolution_new_email-10-02-20.csvto products.csv)以最小化/简化问题,但事实证明文件名在这里很重要,并且是解决方案的关键。我已经以这种方式编辑了这个问题,以使这一点显而易见。我还添加了一个没有已知解释的答案,我希望其他人可以提供。

对于以下问题,我可以确认

  • /folder/custom_csv_parsing_functions.php存在,相关摘录如下
  • /c1/products.csv /c1/com1_webscrapersolution_new_email-10-02-20.csv 存在,可以在这里查看完整

我在 bash 中运行 PHP 作为php -f file.php.

file.php

    <?php

    include('/folder/custom_csv_parsing_functions.php');

    $out = '/c1/com1_webscrapersolution_new_email-10-02-20.csv';


    //ENCLOSE HD DQUOTE

    $in = $out;

    $out = str_replace('.csv','_enc_hd.csv',$in);

    enclose_headers_dquote($in,$out);

抛出错误:

fopen(' /c1/ products.csv com1_webscrapersolution_new_email -10-02-20.csv'):无法打开流:第 58 行的 /folder/custom_csv_parsing_functions.php 中没有此类文件或目录

摘自/folder/custom_csv_parsing_functions.php

//removed code here as this is an excerpt

function enclose_headers_dquote($csv_input_file, $csv_output_file){

    $line = fgets(fopen($csv_input_file, 'r')); //this is line 58

    $line = str_replace("\r\n", '', $line);

    $arr = explode(',', $line);

    $header = '"' . implode('","', $arr) . '"';

    $header = array(
        $header
    );

    $fulltext = file_get_contents($csv_input_file);

    $fulltext = explode("\r\n", $fulltext);

    array_shift($fulltext);

    $reconstituted_csv_array = array_merge($header, $fulltext);
    $reconstituted_csv_str   = implode("\r\n", $reconstituted_csv_array);
    file_put_contents($csv_output_file, $reconstituted_csv_str);

}

如果文件products.csv com1_webscrapersolution_new_email-10-02-20.csv 存在,并且设置为 777 权限,为什么 PHP 报告“fopen(' /c1/ products.csv com1_webscrapersolution_new_email -10-02-20.csv'):无法打开流:没有这样的文件或目录”?

此外,我可以确认直接在 bash 交互式 shell 中运行 PHP 确实成功:

[root@server c1]# php -a
Interactive shell

php > include('/folder/custom_csv_parsing_functions.php');
php > enclose_headers_dquote('/c1/com1_webscrapersolution_new_email-10-02-20.csv','/c1/com1_webscrapersolution_new_email-10-02-20_enc_hd.csv');

成功的输出是/c1/com1_webscrapersolution_new_email-10-02-20_enc_hd.csv(可以在这里查看)。

那么为什么在 bash as 中运行 PHP 时它不起作用php -f file.php呢?

4

1 回答 1

0

我不明白为什么,但这有效,我将不得不相应地编辑原始问题。

不幸的是,在尝试遵守最小示例时,我将 csv 文件的实际名称从 重命名为com1_webscrapersolution_new_email-10-02-20.csvproducts.csv简化名称,认为这种差异无关紧要。

当我重命名为 时com1.csv,它起作用了。我假设它与名称中所有字符类型的复杂性以及解析方式等有关。

我不知道为什么这种差异会有所不同?我是否违反了 Linux 中的文件命名规则?破折号、数字和下划线在 Linux 文件名中都是合法的,不是吗?

我什至显式传递了名称,'\'c1/com1_webscrapersolution_new_email-10-02-20.csv\''因此提供的参数值将显式括在单引号中。

于 2020-02-13T21:30:24.510 回答