If you've already got a filepath of the form "ssh2.sftp://$sftp/path/to/file" you can just use unlink() on that path
(PECL ssh2 >= 0.9.0)
ssh2_sftp_unlink — Bir dosyayı siler
Uzak dosya sistemindeki bir dosyayı siler.
sftp
ssh2_sftp() tarafından açılmış bir SSH2 SFTP özkaynağı.
dosya
Silinecek dosyanın yolu.
Örnek 1 - Karşıdan bir dosya silmek
<?php
$baglanti = ssh2_connect('shell.example.com', 22);
ssh2_auth_password($baglanti, 'birey', 'parola');
$sftp = ssh2_sftp($baglanti);
ssh2_sftp_unlink($sftp, '/home/birey/bayat_dosya');
?>
If you've already got a filepath of the form "ssh2.sftp://$sftp/path/to/file" you can just use unlink() on that path
For some reasons, sometime it's not working. You can do like this instead:
unlink('ssh2.sftp://' . intval($sftp) . ssh2_sftp_realpath($sftp,".") . "./".$dstFile);