php使用unlink删除文件
<?php // deletefile.php
if (!unlink('testfile.txt')) echo "Could not delete file";
else echo "File 'testfile' successfully deleted";
?>
php使用unlink删除文件
<?php // deletefile.php
if (!unlink('testfile.txt')) echo "Could not delete file";
else echo "File 'testfile' successfully deleted";
?>