Ben php içinde başka bir url tabanını değiştirmek için nasıl anlamaya çalışıyorum.
Yani "http://www.website1.com/test" alır ve "http://www.website1.com" yerine bir işlev "http://www.website2.com/test" yapmak için.
Bu muhtemelen çok kolay, hızlı fonksiyondur ama sorun bu halletmek için doğru str_replace () bulma yaşıyorum.
<?php
$pre_replace = "http://www.website1.com/test";
$post_replace = str_replace(
'http://www.website1.com',
'http://www.website2.com',
$pre_replace);
echo $post_replace;
?>
Oldukça nedense çalışmıyor