1

我想要代码替换钩子上的 vbulletin 模板中的一个单词 (global_start ....)

vb3中的代码

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

但我想要它用于 vbulletin 4

4

1 回答 1

0

You should use str_replace instead:

$vbulletin->templatecache['SHOWTHREAD'] = str_replace("word", "replace", $vbulletin->templatecache['SHOWTHREAD']);
于 2012-08-15T22:04:00.463 回答