我有一个处理FTP内容的类:
/var/www/html/crm/rhinos/classes/ftp.php
此类包含在此处生成电子表格的脚本中:
/var/www/html/crm/send_cust_lock.php
生成的电子表格位于此处:
/var/www/html/crm/tmp/cust_lock_1430424215.xlsx
我的课程包含以下方法:
public function put($filepath){
$fp = fopen($filepath, 'r');
$z = ftp_fput($this->connection, $filepath, $fp, FTP_BINARY);
fclose($fp);
return $z;
}
在我的send_cust_lock.php
脚本中,当我将$ftp->put($fn);
($fn
作为电子表格的上述文件路径)时,我收到以下错误:
Warning: ftp_fput(): Can't open that file: No such file or directory in /var/www/html/crm/rhinos/classes/ftp.php on line 62
fopen()
不会抛出错误,为什么ftp_put()
会抛出错误?
我尝试使用所选答案here中的函数将路径转换为相对路径,但没有运气。如何将文件路径转换为ftp_put()
可以识别的内容?
答案 0 :(得分:3)
manual表示值为:
ftp_fput ( resource $ftp_stream , string $remote_file , resource $handle , int $mode [, int $startpos = 0 ] )
你传递的是:
$z = ftp_fput($this->connection, $filepath, $fp, FTP_BINARY);
您的$fp
是预期的本地文件的句柄,但为什么要传递与$remote_file
相同的路径?因为您传递了本地文件名,所以它不会在远程FTP上找到它。