我试图弄清楚如何title="Title is here"
在 PHP 中替换图像的标题部分(),但我无法让它工作,所以有人可以帮忙吗?
标题实际上可以是任何东西,所以我需要找到title"{anything here}"
并替换它(如下所示)。
我正在尝试我们preg_replace()
,但如果有更好的方法,我愿意接受建议。
我尝试了几种不同的变体,但我认为这并不太离谱——
$pattern = '#^title="([a-zA-Z0-9])"$#';
$replacement = 'title="Visit the '.$service['title'].' page';
$service_image = preg_replace($pattern, $replacement, $service_image);