mirror of
https://github.com/hotspotbilling/phpnuxbill.git
synced 2025-08-04 10:15:03 +02:00
remove print_r
This commit is contained in:
parent
1111ea986e
commit
62c3002152
2 changed files with 47 additions and 47 deletions
|
@ -6,7 +6,6 @@ class File
|
|||
public static function copyFolder($from, $to, $exclude = [])
|
||||
{
|
||||
$files = scandir($from);
|
||||
print_r($files);
|
||||
foreach ($files as $file) {
|
||||
if (is_file($from . $file) && !in_array($file, $exclude)) {
|
||||
if (file_exists($to . $file)) unlink($to . $file);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue