插件39:公告栏代码

<?php // Plug-in 39: BB Code

// This is an executable example with additional code supplied
// To obtain just the plug-ins please click on the Download link

$text = <<<_END
This is a test of BB Code<br /><br />
[size=12]Size 12[/size]
[size=20]Size 20[/size]
[size=32]Size 32[/size]<br />
[i]italic[/i]
[color=red][b]bold red[/b][/color]
[u]underline[/u]
[s]strikethrough[/s]<br />
[url]http://google.com[/url]<br />
[url=http://yahoo.com]A titled hyperlink[/url]<br />
[quote]Block quoted text[/quote]
_END;

echo PIPHP_BBCode($text);

function PIPHP_BBCode($string)
{
   // Plug-in 39: BB Code
   //
   // This plug-in recognizes and translates BB Code
   // into its HTML equivalent. The argument required is:
   //
   //    $string: A string containing BB Code

   $from   = array('[b]', '[/b]',  '[i]', '[/i]',
                   '[u]', '[/u]',  '[s]', '[/s]',
                   '[quote]',      '[/quote]',
                   '[code]',       '[/code]',
                   '[img]',        '[/img]',
                   '[/size]',      '[/color]',
                   '[/url]');
   $to     = array('<b>', '</b>',  '<i>', '</i>',
                   '<u>', '</u>',  '<s>', '</s>',
                   '<blockquote>', '</blockquote>',
                   '<pre>',        '</pre>',
                   '<img src="',   '" />',
                   '</span>',      '</font>',
                   '</a>');
   $string = str_replace($from, $to, $string);
   $string = preg_replace("/\[size=([\d]+)\]/",
      "<span style=\"font-size:$1px\">", $string);
   $string = preg_replace("/\[color=([^\]]+)\]/",
      "<font color='$1'>", $string);
   $string = preg_replace("/\[url\]([^\[]*)<\/a>/",
      "<a href='$1'>$1</a>", $string);
   $string = preg_replace("/\[url=([^\]]*)]/",
      "<a href='$1'>", $string);
   return $string;
}

?>

插件说明:

插件接受一个包含BB代码的字符串,把它转换为安全的HTML代码并返回,他接受以下参数:

$string 需要转换的字符串。

你可能感兴趣的:(html,String,公告,url,download,Hyperlink)