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.
Galli каза:Не можах да измисля по-добро заглавие.
Как това примерче да го направя да не изкарва *.php файловете?
Код:<?php if ($handle = opendir('.')) { while (false !== ($file = readdir($handle))) { if ($file != "." && $file != "..") { echo "$file\n"; } } closedir($handle); } ?>
<?php
if ($handle = opendir('.')) {
while (false !== ($file = readdir($handle))) {
if ($file != "." && $file != "..") {
$razshir = strrchr($file, ".");
if ($razshir != ".php"){
echo "$file\n";
}
}
}
closedir($handle);
}
?>