Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在问如何知道 PHP 中的 FTP 中是否已经存在一个文件。
例如我上传一个这样的文件:
$ftp = ftp_connect(...; ftp_login($ftp,...); ftp_put(...);
但是我有错误陈我复制了一个已经存在的文件(所以我必须重命名最新的文件才能正确上传:-))
那么如何知道是否已经有一个名为我上传的文件?
在上传之前,使用ftp_size函数查看是否有文件。 如果它返回任何不是 -1 的值,则该文件存在。