如果您已经拥有格式为 "ssh2.sftp://$sftp/path/to/file" 的文件路径,您可以直接在该路径上使用 unlink()
(PECL ssh2 >= 0.9.0)
ssh2_sftp_unlink — 删除文件
示例 #1 删除文件
<?php
$connection = ssh2_connect('shell.example.com', 22);
ssh2_auth_password($connection, 'username', 'password');
$sftp = ssh2_sftp($connection);
ssh2_sftp_unlink($sftp, '/home/username/stale_file');
?>
如果您已经拥有格式为 "ssh2.sftp://$sftp/path/to/file" 的文件路径,您可以直接在该路径上使用 unlink()
由于某些原因,有时它不起作用。您可以改为这样做
unlink('ssh2.sftp://' . intval($sftp) . ssh2_sftp_realpath($sftp,".") . "./".$dstFile);