Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想删除一个已经存在的文件并将新文件添加到同一文件夹中。我已经在会话中添加了 tmp 名称。已经删除了现有的,但它不在新的中移动。
<?php session_start(); $files = $_SESSION['Already']; $tmp=$_SESSION['PATH']; unlink('../upload/'.$files); $to="../upload/".$files; move_uploaded_file($tmp,$to); ?>
尝试替换文件。如果文件名完全相同,则无需取消链接。只需使用move_uploaded_file()即可。
move_uploaded_file()
了解导致错误的原因很重要。检查您的服务器error_logs以获取此类信息。
error_logs