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


PHP format::tag方法代碼示例

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


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

示例1: format

function format($str, $type = '')
{
    $tmp = new format($str, true, true);
    $tmp->html(array('b', 'i', 'u', 's'));
    if ($type == 'e' || $type == 'p') {
        //$tmp->parse('#\[tex\](.*?)\[/tex\]#se', '"[img]http://chart.apis.google.com/chart?cht=tx&chl=".rawurlencode("\\1")."[/img]"');
        $tmp->tag('img', '<img src="\\1" alt="" />');
        $tmp->attribute('img', '<img src="\\2" alt="\\1" />');
        $tmp->tag('url', '<a href="\\1" target="_blank">\\1</a>');
        $tmp->attribute('url', '<a href="\\1" target="_blank">\\2</a>');
        $tmp->tag('link', '<a href="\\1">\\1</a>');
        $tmp->attribute('link', '<a href="\\1">\\2</a>');
        $tmp->attribute('acronym', '<acronym title="\\1">\\2</acronym>');
        $tmp->tag('center', '<div align="center">\\1</div>');
        $tmp->attribute('color', '<font color="\\1">\\2</font> ');
    } elseif ($type == 'c') {
        $tmp->parse('#https?://[^.\\s]+\\.[^\\s]+#ix', '<a href="\\0" target="_blank">\\0</a>');
        $tmp->parse('#(\\s|\\A)\\#([0-9]+)#', '<a href="#comment-\\2">\\0</a>');
    } elseif ($type == 'cf') {
        $tmp->parse('#https?://[^.\\s]+\\.[^\\s]+#ix', '<a href="\\0" target="_blank">\\0</a>');
    }
    return $tmp->result();
}
開發者ID:sergioccrr,項目名稱:GatuLog-PHP,代碼行數:23,代碼來源:functions.php


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