vbulletin在php 5.2.6环境下修改搜索中文问题:
PHP 5.2.6 的对 preg_replace 的改动造成的。请您按如下方法修改: 打开 includes/functions.php搜索:
$str = preg_replace(“/([\w\W]+)/u”, ”, $str);
替换为
$str = preg_replace(“/([!-~]+)/u”, ”, $str);
主要用于个人操作备份,以备查阅,非IT男
vbulletin在php 5.2.6环境下修改搜索中文问题:
PHP 5.2.6 的对 preg_replace 的改动造成的。请您按如下方法修改: 打开 includes/functions.php搜索:
$str = preg_replace(“/([\w\W]+)/u”, ”, $str);
替换为
$str = preg_replace(“/([!-~]+)/u”, ”, $str);