覆盖服务器上的文件(PHP)

前端之家收集整理的这篇文章主要介绍了覆盖服务器上的文件(PHP)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在制作一个 Android应用程序,需要能够将文件推送到服务器上.

为此,我使用POST和fopen / fwrite,但此方法仅附加到文件并在写入文件之前使用unlink无效. (file_put_contents具有完全相同的效果)

这就是我到目前为止所拥有的

<?PHP
$fileContent = $_POST['filecontent'];

$relativePath = "/DatabaseFiles/SavedToDoLists/".$_POST['filename'];
$savePath = $_SERVER["DOCUMENT_ROOT"].$relativePath; 

unlink($savePath);

$file = fopen($savePath,"w");
fwrite($file,$fileContent);
fclose($file);

?>

当我不尝试写入文件时,该文件将正确删除它自己,但如果我尝试写入它,它将附加.

有人有任何关于覆盖文件内容的建议吗?

谢谢,卢克.

使用wa打开和截断:
$file = fopen($savePath,"wa+");

fopen

w+: Open for reading and writing; place the file pointer at the beginning of the file and truncate the file to zero length. If the file does not exist,attempt to create it.

a+: Open for reading and writing; place the file pointer at the end of the file. If the file does not exist,attempt to create it.

原文链接:https://www.f2er.com/php/130423.html

猜你在找的PHP相关文章