копировать — редактировать файл PHP с PHP без дублированного содержимого

Поэтому я пытался отредактировать файл PHP после его создания, и у меня, похоже, продолжают возникать проблемы.

Вот мой исходный код.

if($pbtype == 'pwall' OR $pbtype == 'cl')
{
$file = '../postback/pwallpb.php';
$pbac = '../postback/'.md5($affn).'.php';
}
else
{
$file = '../postback/postback.php';
$pbac = '../postback/'.md5($affn).'.php';
}

copy($file, $pbac);
// Read the while file into a string $htaccess
$files = file_get_contents($pbac);

// Stick the new IP just before the closing </files>
$new_files  = str_replace('//NET NAME//', "$affn", $files);
$new_files .= str_replace('// IP 1 //', "$affip", $files);
$new_files .= str_replace('// IP 2 //', "$affip2", $files);
$new_files .= str_replace('// IP 3 //', "$affip3", $files);
$new_files .= str_replace('// IP 4 //', "$affip4", $files);

// And write the new string back to the file
file_put_contents($pbac, $new_files);
$pback = '/postback/'.md5($affn).'.php';

он создает файл. это не проблема с правами доступа, он также редактирует файл, но он генерирует php каждый раз, когда я заменяю строку, поэтому id I str_replace 5 раз, тогда в файле 5 экземпляров блоков кода. что я делаю не так?

обнови мой код. что я сделал не так в этот раз?

if($pbtype == 'pwall' OR $pbtype == 'cl')
{
$file = '../postback/pwallpb.php';
$pbac = '../postback/'.md5($affn).'.php';
}
else
{
$file = '../postback/postback.php';
$pbac = '../postback/'.md5($affn).'.php';
}

$myfile = fopen($file, "r") or die("Unable to open file!");
$files = fread($myfile,filesize($file));
fclose($myfile);// Stick the new IP just before the closing </files>
$new_files = str_replace('||NETNAME||', $affn, $files);
$new_files = str_replace('||IP1||', $affip, $files);
$new_files = str_replace('||IP2||', $affip2, $files);
$new_files = str_replace('||IP3||', $affip3, $files);
$new_files = str_replace('||IP4||', $affip4, $files);

// And write the new string back to the file
$fh = fopen($pbac, 'w') or die("can't open file");
$stringData = $new_files;
fwrite($fh, $stringData);
fclose($fh);

$pback = '/postback/'.md5($affn).'.php';

0

Решение

Это работает и проверено:

    error_reporting(-1);
ini_set('display_errors', 'On');if($pbtype == 'pwall' OR $pbtype == 'cl')
{
$file = 'pwallpb.php';
$pbac = md5($affn).'.php';
}
else
{
$file = 'postback.php';
$pbac = md5($affn).'.php';
}$myfile = fopen('../postback/' . $file, "r") or die("Unable to open file!");
$files = fread($myfile,filesize($pbac));
fclose($myfile);// Stick the new IP just before the closing </files>
$new_files  = str_replace('||NetName||', $affn, $files);
$new_files = str_replace('||IP1||', $affip, $new_files);
$new_files = str_replace('||IP2||', $affip2, $new_files);
$new_files = str_replace('||IP3||', $affip3, $new_files);
$new_files = str_replace('||IP4||', $affip4, $new_files);$myFile = md5($affn).'.php';
$fh = fopen('../postback/' . $myFile, 'w') or die("can't open file");
$stringData = $new_files;
fwrite($fh, $stringData);
fclose($fh);

$pback = '../postback/'.md5($affn).'.php';

Тестовый файл отображает это:

$IParray=array("1.2.3.4","2.3.4.5","4.5.6.7","5.6.7.8");
0

Другие решения

Вы используете «. =» Вместо «=». «. =» добавляет ваши результаты в файл. Ваш код может выглядеть лучше так:

if($pbtype == 'pwall' OR $pbtype == 'cl')
{
$file = '../postback/pwallpb.php';
}
else
{
$file = '../postback/postback.php';
}
$pbac = '../postback/'.md5($affn).'.php';

copy($file, $pbac);

// Read the while file into a string $htaccess
$files = file_get_contents($pbac);

// Stick the new IP just before the closing </files>
$searchArray = array('//NET NAME//','// IP 1 //','// IP 2 //','// IP 3 //','// IP 4 //');
$replaceArray = array("$affn","$affip","$affip2","$affip3","$affip4");
$new_files  = str_replace($searchArray,$replaceArray,$files);

// And write the new string back to the file
file_put_contents($pbac, $new_files);
$pback = '/postback/'.md5($affn).'.php';
0

По вопросам рекламы [email protected]