Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Sign In with Facebook Sign In with Google Sign In with OpenID Sign In with Twitter

In this Discussion

最新版本中文用户名解决方案

This discussion is related to the Simplified Chinese Locale(简体中文) addon.

用户名已经没问题. 需要处理的是 mentions.

config 目录下新建 bootstrap.after.php

<?php
class Chn_MentionsFormatter {
public static function GetMentions($String) {
  // This one grabs mentions that start at the beginning of $String
  preg_match_all(
     '/(?:^|[\s,\.>])@([\d\w\x{4e00}-\x{9faf}]{3,20})\b/ui',
     $String,
     $Matches
  );
  if (count($Matches) > 1) {
     $Result = array_unique($Matches[1]);
     return $Result;
  }
  return array();
}
public static function FormatMentions($Mixed) {
    // return "..................................";
    $Mixed = preg_replace(
       '/(^|[\s,\.>])@([\w\d\x{4e00}-\x{9fa5}]{3,20})\b/ui',
       '\1'.Anchor('@\2', '/profile/\\2'),
       $Mixed
    );
    return $Mixed;
 }
}
Gdn::FactoryInstall('MentionsFormatter', 'Chn_MentionsFormatter', NULL, Gdn::FactoryInstance);

Comments

Sign In or Register to comment.