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.net 上的任何文档中都找不到这个,所以我不确定它是否是一个特性。是否有响应 ssh2_scp_send 检查文件是否发送成功。
即使用线路时
ssh2_scp_send($connection, $filePath, $target);
是否有可以检查的回调或响应,或者可以将其包装在 try/catch 中以检查文件是否成功?
SCP 协议中没有任何东西可以做这样的事情。您能做的最好的事情是上传文件上的 md5 或 sha1 或其他内容,以及原始文件上的 md5,看看它们是否匹配。