我有一个放在变量中的 html 代码。我想使用 str_replace 将任何相对图像 src 替换为绝对 a。像这样:
$export = 'some html codes'
$repthis = 'src="/images';
$reptothis = 'src="http://images.site.com';
$export = str_replace($repthis, $reptothis, $export);
但这段代码对我不起作用。我尝试了这段代码进行测试,它正在工作:
$export = 'some html codes'
$repthis = "text1";
$reptothis = "text2";
$export = str_replace($repthis, $reptothis, $export);
此代码在我的 html 代码中正确地用 text2 替换 text1。请帮我。