你能用preg_replace帮我吗?

时间:2013-12-18 08:34:10

标签: url preg-replace

我必须替换另一部分字符串。

原件:

src="../../Estatico//ComunesSEI/Images/Supernet_logo.gif"

我想要的结果:

src="https://empresas3.gruposantander.es/SEI_PARTENON_ENS/Estatico//ComunesSEI/Images/Supernet_logo.gif"

问题:我必须改变

src="../..

 src="src="https://empresas3.gruposantander.es/SEI_PARTENON_ENS

1 个答案:

答案 0 :(得分:0)

为什么不使用str_replace

$string = "../../Estatico//ComunesSEI/Images/Supernet_logo.gif";
$find = "../..";
$replace = "https://empresas3.gruposantander.es/SEI_PARTENON_ENS";

echo str_replace($find, $replcae $string);