如何让 PHP 检测段落并添加和解析
HTML 输出的标签?
我正在制作一个支持 bbcode 的博客,但我仍然缺少
博客文章的 HTML 输出中的标签。如何让 PHP 检测并添加
输出上的标签?
我目前有这段代码来解析一些基础的 bbcode 和 GeSHi 代码:
<?php
function code($match) {
require_once './class/geshi/geshi.php';
$geshi = new GeSHi($match[2], $match[1]);
return $geshi->parse_code();
}
function bbcode($input) {
$input = strip_tags($input);
$input = htmlentities($input);
$bbcodes = array(
"/\[b\](.*?)\[\/b\]/is" => "<b>$1</b>",
"/\[u\](.*?)\[\/u\]/" => "<u>$1</u>",
"/\[i\](.*?)\[\/i\]/" => "<i>$1</i>",
"/\[d\](.*?)\[\/d\]/" => "<del>$1</del>",
"/\[url=(.*?)\](.*?)\[\/url\]/" => "<a href='$1'>$2</a>"
);
$input = preg_replace(array_keys($bbcodes), array_values($bbcodes), $input);
//Check for code and add GeSHi:
$input = preg_replace_callback('~\[code=(.*?)\](.*?)\[\/code\]~is', 'code', $input);
return $input;
}
?>
如果用户在 textarea 中提交以下示例:
This is [b]bold and [i]italic[/i][/b].
This is some [u]PHP[/u] code:
[code=php]
echo 'Hello world!';
[/code]
That's all folk!
HTML 输出为:
This is <b>bold and <i>italic</i></b>.
This is some <u>PHP</u> code:
<pre class="php" style="font-family:monospace;">
<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'Hello world!'</span><span style="color: #339933;">;</span>
</pre>
That's all folk!
...没有 p 标签。那么如何添加这个功能呢?