2

我想替换这个标题:

Page 1 - example.com
Page 2 - example.com
Search engine optimization - example.com

不想替换这些标题:

Page 1
Page 2
Search engine optimization

因此,只有包含 example.com 时,我才想替换它。我试过这样的事情:

$document = preg_replace('#(<title[^>]*>)(.*)[(example.com)][^<]+</title>#i', '$1Welcome to my site</title>', $document);

但这行不通。有人有答案吗?

提前致谢。

4

1 回答 1

0
$document = preg_replace("/(<title>)(.*?) - example.com(<\/title>)/", "$1$2$3", $document)
于 2012-04-21T13:01:29.210 回答