Ben tam olarak konu ile eşleşen php bir dize yerine bir yol arıyorum.
Örneğin ben üç hatlarına sahip 'merhaba-world.txt' adlı bir dosya var:
'http://www.example.com/'
'http://www.example.com/category/'
'http://www.example.com/tag/name/'
ve 'http://www.example2.com'
ile 'http://www.example.com/'
değiştirmek gerekir
$string=file_get_contents('hello-world.txt');
$string=str_replace('http://www.example.com/','http://www.example2.com',$string);
echo $string;
Ben buna benzer bir sonuç elde edilecektir:
'http://www.example2.com/'
'http://www.example2.com/category/'
'http://www.example2.com/tag/name/'
Ama ne ben aslında gerek bu gibi bir şeydir:
'http://www.example2.com/'
'http://www.example.com/category/'
'http://www.example.com/tag/name/'
Yardım Lütfen!!