first commit

This commit is contained in:
f4ilji
2024-09-19 16:06:49 +05:00
commit b686638a39
1664 changed files with 428174 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
<?php
function tempCopyFile($fromDir, $delDir, $tempDir)
{
copy($fromDir . '/index.html', $tempDir. '/index.html');
removeDirectory($delDir);
if (!file_exists($fromDir)) mkdir($fromDir);
copy($tempDir . '/index.html', $fromDir. '/index.html');
}