當前位置: 首頁>>代碼示例>>PHP>>正文


PHP bbcode::autolink_text方法代碼示例

本文整理匯總了PHP中bbcode::autolink_text方法的典型用法代碼示例。如果您正苦於以下問題:PHP bbcode::autolink_text方法的具體用法?PHP bbcode::autolink_text怎麽用?PHP bbcode::autolink_text使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在bbcode的用法示例。


在下文中一共展示了bbcode::autolink_text方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: generate_text_for_display

/**
* For display of custom parsed text on user-facing pages
* Expects $text to be the value directly from the database (stored value)
*/
function generate_text_for_display($text, $only_smileys = false, $censor = true, $acro_autolinks = false, $forum_id = '999999')
{
    global $bbcode, $config, $user;
    if (empty($text)) {
        return '';
    }
    if (defined('IS_ICYPHOENIX') && $censor) {
        $text = censor_text($text);
    }
    if (!class_exists('bbcode') || empty($bbcode)) {
        include_once IP_ROOT_PATH . 'includes/bbcode.' . PHP_EXT;
    }
    if (empty($bbcode)) {
        $bbcode = new bbcode();
        if (!$user->data['session_logged_in']) {
            $user->data['user_allowhtml'] = $config['allow_html'] ? true : false;
            $user->data['user_allowbbcode'] = $config['allow_bbcode'] ? true : false;
            $user->data['user_allowsmile'] = $config['allow_smilies'] ? true : false;
        }
        $bbcode->allow_html = $user->data['user_allowhtml'] && $config['allow_html'] ? true : false;
        $bbcode->allow_bbcode = $user->data['user_allowbbcode'] && $config['allow_bbcode'] ? true : false;
        $bbcode->allow_smilies = $user->data['user_allowsmile'] && $config['allow_smilies'] ? true : false;
    }
    if ($only_smileys) {
        $text = $bbcode->parse_only_smilies($text);
    } else {
        $text = $bbcode->parse($text);
        if ($acro_autolinks) {
            $text = $bbcode->acronym_pass($text);
            $text = $bbcode->autolink_text($text, $forum_id);
        }
    }
    return $text;
}
開發者ID:ALTUN69,項目名稱:icy_phoenix,代碼行數:38,代碼來源:functions_bbcode.php

示例2: parseMessage

 function parseMessage($text, $enable_bbcode, $enable_html, $enable_smilies, $enable_autolinks_acronyms)
 {
     global $db, $cache, $config, $user, $bbcode, $lofi;
     if (!class_exists('bbcode')) {
         include IP_ROOT_PATH . 'includes/bbcode.' . PHP_EXT;
     }
     if (empty($bbcode)) {
         $bbcode = new bbcode();
     }
     if (!empty($text)) {
         $text = censor_text($text);
         // Parse message and/or sig for BBCode if reqd
         $bbcode->allow_html = $this->config['allow_html'] == true && $enable_html == true ? true : false;
         $bbcode->allow_bbcode = $this->config['allow_bbcode'] == true && $enable_bbcode == true ? true : false;
         $bbcode->allow_smilies = $this->config['allow_smilies'] == true && !$lofi == true && $enable_smilies == true ? true : false;
         $text = $bbcode->parse($text);
         if ($enable_autolinks_acronyms) {
             $text = $bbcode->acronym_pass($text);
             $text = $bbcode->autolink_text($text, '999999');
         }
     } else {
         $text = '';
     }
     // Strip out the <!--break--> delimiter.
     $delim = htmlspecialchars('<!--break-->');
     $pos = strpos($text, $delim);
     if ($pos !== false && $pos < strlen($text)) {
         $text = substr_replace($text, html_entity_decode($delim), $pos, strlen($delim));
     }
     return $text;
 }
開發者ID:ALTUN69,項目名稱:icy_phoenix,代碼行數:31,代碼來源:news.php


注:本文中的bbcode::autolink_text方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。