我希望代码在钩子上替换vbulletin模板中的单词(global_start ....)
vb3中的代码
$vbulletin->templatecache['SHOWTHREAD'] = preg_replace("#word#", "replace", $vbulletin->templatecache['SHOWTHREAD']);
但是我想要它用于vbulletin 4
答案 0 :(得分:0)
您应该使用str_replace:
$vbulletin->templatecache['SHOWTHREAD'] = str_replace("word", "replace", $vbulletin->templatecache['SHOWTHREAD']);