Follow along with the video below to see how to install our site as a web app on your home screen.
Бележка: This feature may not be available in some browsers.
<?php
copy('file.php', 'copyfile.php');
?>
<?php
copy('file.php', 'papka/copyfile.php');
?>
<?php
$directory = 'directory'; //Име на папката
$file = 'file.php'; //Файла който ще копираме
$newfile = 'newfile.php'; //Името на новия файл
if(!file_exists($directory))
{
//Ако папката не съществува я правим
mkdir($directory, 0700);
copy($file, "$directory/$newfile");
}
else
{
copy($file, "$directory/$newfile");
}
?>