0
我必須替換另一部分字符串。你能幫我用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
歡迎來到SO!你能解釋你所嘗試過的嗎? – JNF
我試過 $ pattern ='/src="\/..\/..\//'; $ replace ='src =「https://empresas3.gruposantander.es/SEI_PARTENON_ENS'; $ output = preg_replace($ pattern,$ replace,$ output); – Kargol
嘗試轉義'.'。 src =「\/\。\。\/\。\。\ //'; – JNF