jurar1
есть ли в природе ?
имеем нтмл пагу= надо заменить пару урлов и текст .
руками долго получаеться )
а в день по 50 -100 замен по 4 урла...
спасибо )
jurar1
немного не то....
Код:
<?php
$file_in=file_get_contents("in.html");
$file_1=file("1.txt");
$file_2=file("2.txt");
$file_3=file("3.txt");
$file_4=file("4.txt");
for ($i=0;$i<count($file_1);$i++)
{
$temp=$file_in;
$temp=str_replace("1",rtrim($file_1[$i]),$temp);
$temp=str_replace("2",rtrim($file_2[$i]),$temp);
$temp=str_replace("3",rtrim($file_3[$i]),$temp);
$temp=str_replace("4",rtrim($file_4[$i]),$temp);
$h=fopen("out$i.html","w");
fwrite($h,$temp);
fclose($h);
}
?>
спасибо SMC )