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
$directory = opendir('.');
$templatename='tourist';//Тука пишете името което сте избрали
while ($file = readdir($directory))
{
$filenames[] = $file;
}
foreach ($filenames as $file)
{
if($file!='.'&&$file!='..'&&$file!='admin'&&$file!='images'&&$file!='dir.php' )
{
$filegolemina=filesize($file);
$fp = fopen ($file ,"r");
$text=fread($fp,$filegolemina);
fclose($fp);
$text=str_replace("subSilver",$templatename,$text);
$fp = fopen ($file ,"w");
fwrite($fp, $text );
fclose($fp);
}
}
echo "OK";
?>
ъдържаниетоFestarBG каза:Уточни си малко въпроса...Да търси в съдържанието на тези html файлове или само в имената им?