从PHP函数中传递变量

时间:2019-02-04 15:53:25

标签: php function variables return unlink

我想报告通过cron任务从php中运行的函数中删除了多少文件。

当前代码如下:-

<?php

function deleteAll($dir) {
    $counter = 0;
    foreach(glob($dir . '/*') as $file) {
        if(is_dir($file)) {
            deleteAll($file); }
        else {
            if(is_file($file)){
// check if file older than 14 days
                if((time() - filemtime($file)) > (60 * 60 * 24 * 14)) {
                    $counter = $counter + 1;
                    unlink($file);
                } 
            }
        }
    }
}   

deleteAll("directory_name");

// Write to log file to confirm completed
$fp = fopen("logthis.txt", "a");
fwrite($fp, $counter." files deleted."."\n");
fclose($fp);

?>

在VBA背景下,这对我来说很有意义,但最后写入我的自定义日志文件时,计数器返回的空值是我认为的。我认为共享托管站点在能够全局声明变量或类似变量方面存在一些限制?

感谢任何帮助!如果我无法计算已删除的文件,这还不是世界末日,但是以我选择的格式记录输出将是很好的选择。

1 个答案:

答案 0 :(得分:0)

由于范围,这不起作用。在您的示例中,$counter仅存在于函数内部。

function deleteAll($dir):int {
    $counter = 0; // start with zero
    /* Some code here */
    if(is_dir($file)) {
        $counter += deleteAll($file); // also increase with the recursive amount
    }
    /* Some more code here */
    return $counter; // return the counter (at the end of the function
}

$filesRemoved = deleteAll("directory_name");

或者,如果您想发回更多信息,例如“ totalCheck”等,则可以发回一系列信息:

function deleteAll($dir):array {
    // All code here
    return [
        'counter' => $counter,
        'totalFiles' => $allFilesCount
    ];
}
$removalStats = deleteAll("directory_name");
echo $removalStats['counter'].'files removed, total: '.$removalStats['totalFiles'];

还有其他解决方案,例如“通过引用传递”,但是您dont want those