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.
function EmptyDir($dir) { // da izchisti vsichki failowe ot dadena direktoriq ..
$handle=opendir($dir);
while (($file = readdir($handle))!==false) {
echo "$file <br>"; // Twa e da pokazwa list saas failowete za triene
unlink($dir.'/'.$file);
}
$dir = "./images/icons";
EmptyDir($dir) ;
rmdir($dir);
echo "Готов си !";