我试图弄清楚如何在 php.ini 中用另一个 url 库替换一个 url 库。
所以一个函数需要 "http://www.website1.com/test" 并替换 "http://www.website1.com" 使其成为 "http://www.website2.com/test" 。
这可能是一个非常简单的快速功能,但我无法找到正确的 str_replace() 来完成这项工作。
<?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;
?>
由于某种原因不能正常工作