История изменений
Исправление
alexisiumus,
(текущая версия)
:
<?php
ini_set('error_reporting', E_ALL);
function zam_str($file, $str0, $str1) {
$array = file("file");
$count = count($array);
$c = count($str0);
for ($i = 0; $i <= $c - 1; $i++) {
for ($a = 0; $a <= $count - 1; $a++) {
$x = $array[$a];
$y = $str0[$i];
$z = $str1[$i];
if ($x == $y) {
$array[$a] = $z;
//print_r($y);
}
}
}
$fp = fopen('http://skil.su/php/temp/temp.php', 'w+');
fputs($fp, implode("", $array));
fclose($fp);
echo "<h1>Ok!</h1>";
}
$st_zn = array("aaaaa");
$n_zn = array("bbbbb");
zam_str("http://skil.su/2/file", $st_zn, $n_zn);
?>
Исправление
alexisiumus,
:
'''php
''' Всё тут хватает…
Исправление
alexisiumus,
:
'''
''' Всё тут хватает…
Исходная версия
alexisiumus,
:
Всё тут хватает…