参照网上一位朋友的教程(这是dz x1的修改方法,理论上适用所有版本) Discuz_X1_SC_UTF8\upload\source\function\function_post.php 226行 if(strlen($subject) > 120) Discuz_X1_SC_UTF8\upload\static\js\forum_post.js 53行 } else if(mb_strlen(theform.subject.value) > 120) { showDialog('您的标题超过 120 个字符的限制'); return false; } Discuz_X1_SC_UTF8\upload\static\js\forum_viewthread.js 141行 } else if(mb_strlen(theform.subject.value) > 120) { s = '您的标题超过 120 个字符的限制。'; theform.subject.focus(); } 另一方法: 第一 :找 sitatic/js/forum_post.js 里面的 1.if(mb_strlen(theform.subject.value) > 80 改为你想要的主题长度。 第二 :找 source/function/function_post.php 里面的 1.if(strlen($subject) > 80) 改为你想要的主题长度 。 第三 :找 source/language/lang_messege.php 里面 的 :对不起,您的标题超过 80 个字符,请返回修改标题长度。 改为你想要的主题长度
追问不能使用