当我使用Mac和MAMP时,该命令运行良好,但是在Windows 10和XAMPP上移动源代码后,现在以下脚本不会删除文件,而只会在文件夹内移动文件的副本(exported_files)并重命名新文件。
<?php
session_start();
error_reporting(0);
if (isset($_POST['ok']) && ($_POST['ok'] == 1))
{
//$arrayRicevuto = implode(" ",$arrayRicevuto);
if (!isset($_SESSION['countRows']) && empty($_SESSION['countRows']))
{
$_SESSION['countRows'] = $_POST['countRows'];
}
$data = date("dmY");
$filename = "EstrazioneParziale_del_" . $data;
$estensione = ".csv";
$fileOpen = fopen($filename.$estensione, "a") or die("Impossibile aprire il file");
foreach ($_POST['arrayFiltrato'] as $fields) {
fputcsv($fileOpen, $fields);
}
fclose($fileOpen);
$_SESSION['countRows']--;
if ($_SESSION['countRows'] == 0)
{
$finalData = date("h-i-s");
$directory="exported_files/";
copy($filename.$estensione, $directory.$_SESSION['email']."_".$filename.$finalData.$estensione);
unlink('$filename.$estensione');
unset($_SESSION['countRows']);
echo $directory.$_SESSION['email']."_".$filename.$finalData.$estensione;
}
} else {
echo "Errore! ";
}
?>
有人可以给我一个建议吗?
非常感谢! :)
答案 0 :(得分:0)
第一个问题:不要在变量周围使用单引号,因为它将变量视为文字字符串,而不是返回其值。例如:
<?php
$test = "hello";
echo '$test'; // This will print $test
echo "$test"; // This will print hello
?>
在unlink();中,使用变量时根本不需要使用引号。
有时系统无法找到您要使用unlink()
删除的文件的位置。在这种情况下,您可以使用realpath();,因为它将返回您要删除的文件的绝对路径:
unlink(realpath($filename.$estensione));