Computer >> Máy Tính >  >> Lập trình >> PHP

hàm ftp_delete () trong PHP

Hàm ftp_delete () được sử dụng để xóa tệp trên máy chủ FTP.

Cú pháp

ftp_delete(con,myfile);

Tham số

  • con - Kết nối FTP

  • myfile - Tệp sẽ bị xóa

Quay lại

Hàm ftp_delete () trả về TRUE khi thành công hoặc FALSE khi thất bại

Ví dụ

Sau đây là ví dụ để xóa tệp -

<?php
   $ftp_server="192.168.0.4";
   $ftp_user="amit";
   $ftp_pass="tywg61gh";
   $con = ftp_connect($ftp_server) or die("Could not connect to $ftp_server");
   $myfile = "E:/new/demo.txt";
   if (ftp_delete($con, $myfile)) {
      echo "The file deleted!";
   } else {
      echo "The file cannot be deleted!";
   }
   ftp_close($con);
?>