找到预定义文本时添加超链接的脚本?

时间:2011-09-29 21:41:16

标签: php

我正在使用PHP从Google日历XML Feed中提取一些数据,我想知道是否有任何类型的脚本会在此之后运行,如果它找到某个短语(不是URL),请添加超链接到它?

E.g。如果它从Feed中提取“Bayerische Staatsoper”,它将为Staatsoper网站添加一个超链接。

这可能吗?

希望这是有道理的。

由于

1 个答案:

答案 0 :(得分:2)

str_replace("Bayerische Staatsoper","<a href='#'>Bayerische Staatsoper</a>",$text);

以上代码在变量$text中搜索“Bayerische Staatsoper”,并将其替换为链接。