PHP 8.3.4 Released!
add a note

User Contributed Notes 2 notes

up
7
andrew at pause dot ca
9 years ago
If you've already got a filepath of the form "ssh2.sftp://$sftp/path/to/file" you can just use unlink() on that path
up
0
pfortin at expertime dot com
3 years ago
For some reasons, sometime it's not working. You can do like this instead:

unlink('ssh2.sftp://' . intval($sftp) . ssh2_sftp_realpath($sftp,".") . "./".$dstFile);
To Top