编辑:最初我简化了原始 csv 文件(从com1_webscrapersolution_new_email-10-02-20.csv
to 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
呢?