Exemplo n.º 1
0
 /**
  * 名前をHTML用に変換して返す
  *
  * @access  private
  * @return  string
  */
 function transName($name, $resnum)
 {
     global $_conf;
     $nameID = "";
     // ID付なら名前は "aki </b>◆...p2/2... <b>" といった感じでくる。(通常は普通に名前のみ)
     // ID付なら分解する
     if (preg_match("~(.*)( </b>◆.*)~", $name, $matches)) {
         $name = rtrim($matches[1]);
         $nameID = trim(strip_tags($matches[2]));
     }
     // 数字を引用レスポップアップリンク化
     if ($_conf['quote_res_view']) {
         // </b>〜<b> は、ホスト(やトリップ)なのでマッチしないようにしたい
         $pettern = '/^( ?(?:&gt;|>)* ?)?([1-9]\\d{0,3})(?=\\D|$)/';
         $name && ($name = preg_replace_callback($pettern, array($this, 'quote_res_callback'), $name, 1));
     }
     // ふしあなさんとか?
     $name = preg_replace('~</b>(.+?)<b>~', '<font color="#777777">$1</font>', $name);
     //(strlen($name) > 0) and $name = $name . " "; // 文字化け回避
     $name = StrSjis::fixSjis($name);
     if ($nameID) {
         $name = $name . $nameID;
     }
     return $name;
 }
Exemplo n.º 2
0
 /**
  * 名前をHTML用に変換して返す
  *
  * @access  private
  * @return  string  HTML
  */
 function transName($name, $resnum)
 {
     global $_conf;
     $nameID = '';
     // ID付なら名前は "aki </b>◆...p2/2... <b>" といった感じでくる。(通常は普通に名前のみ)
     // ID付なら分解する
     if (preg_match('~(.*)( </b>◆.*)~', $name, $matches)) {
         $name = rtrim($matches[1]);
         $nameID = trim(strip_tags($matches[2]));
     }
     // 数字を引用レスポップアップリンク化
     // </b>〜<b> は、ホスト(やトリップ)なのでマッチしないようにしたい
     /*
     if ($name) {
         $pettern = '/^( ?(?:&gt;|>)* ?)?([1-9]\d{0,3})(?=\\D|$)/';
         $name = preg_replace_callback($pettern, array($this, 'quote_res_callback'), $name, 1);
     }
     */
     if (strlen($name) && $name != $this->BBS_NONAME_NAME) {
         $name = preg_replace_callback($this->getAnchorRegex('/(?:^|%prefix%)%nums%/'), array($this, 'quote_name_callback'), $name);
     }
     // ふしあなさんとか?
     $name = preg_replace('~</b>(.+?)<b>~', '<font color="#777777">$1</font>', $name);
     $name = StrSjis::fixSjis($name);
     if ($nameID) {
         $name .= $nameID;
     }
     return $name;
 }
Exemplo n.º 3
0
 /**
  * 名前をHTML用に変換して返す
  *
  * @access  private
  * @return  string  HTML
  */
 function transName($name, $resnum)
 {
     global $_conf;
     $nameID = '';
     // ID付なら名前は "aki </b>◆...p2/2... <b>" といった感じでくる。(通常は普通に名前のみ)
     // ID付なら分解する
     if (preg_match('~(.*)( </b>◆.*)~', $name, $matches)) {
         $name = rtrim($matches[1]);
         $nameID = trim(strip_tags($matches[2]));
     }
     // 数字を引用レスポップアップリンク化
     if ($_conf['quote_res_view']) {
         // </b>〜<b> は、ホスト(やトリップ)なのでマッチしないようにしたい
         if ($name) {
             $name = preg_replace_callback($this->getAnchorRegex('/(?:^|%prefix%)%nums%/'), array($this, 'quote_name_callback'), $name);
         }
     }
     // ふしあなさんとか?
     $name = preg_replace('~</b>(.+?)<b>~', '<font color="#777777">$1</font>', $name);
     $name = StrSjis::fixSjis($name);
     if ($nameID) {
         $name = $name . $nameID;
     }
     return $name;
 }