Benim veri dosyasında belli blokları bulmak ve bunların içinde bir şey değiştirmek için çalışıyorum. Bundan sonra yeni bir dosya içine (yerine verileri ile) her şeyi koymak. Şu anda benim kod şöyle görünür:
$content = file_get_contents('file.ext', true);
//find certain pattern blocks first
preg_match_all('/regexp/su', $content, $matches);
foreach ($matches[0] as $match) {
//replace data inside of those blocks
preg_replace('/regexp2/su', 'replacement', $match);
}
file_put_contents('new_file.ext', return_whole_thing?);
Now the problem is I don't know how to return_whole_thing. Basically, file.ext and new_file.ext are almost the same except of the replaced data.
Any suggestion what should be on place of return_whole_thing
?
Teşekkür ederiz!