我想刪除一個已經存在的文件,並將其添加到同一個文件夾中。 我已將tmp名稱添加到會話中。刪除已有的,但不是新的。在php中上傳文件
<?php
session_start();
$files = $_SESSION['Already'];
$tmp=$_SESSION['PATH'];
unlink('../upload/'.$files);
$to="../upload/".$files;
move_uploaded_file($tmp,$to);
?>
我想刪除一個已經存在的文件,並將其添加到同一個文件夾中。 我已將tmp名稱添加到會話中。刪除已有的,但不是新的。在php中上傳文件
<?php
session_start();
$files = $_SESSION['Already'];
$tmp=$_SESSION['PATH'];
unlink('../upload/'.$files);
$to="../upload/".$files;
move_uploaded_file($tmp,$to);
?>
你得到了什麼錯誤? – nu6A
那些'$ files'和'$ temp'有什麼? – Starx