在vbulletin 4模板中更换preg

时间:2012-08-15 21:50:42

标签: php vbulletin

我希望代码在钩子上替换vbulletin模板中的单词(global_start ....)

vb3中的代码

$vbulletin->templatecache['SHOWTHREAD'] = preg_replace("#word#", "replace", $vbulletin->templatecache['SHOWTHREAD']);

但是我想要它用于vbulletin 4

1 个答案:

答案 0 :(得分:0)

您应该使用str_replace:

$vbulletin->templatecache['SHOWTHREAD'] = str_replace("word", "replace", $vbulletin->templatecache['SHOWTHREAD']);