之前已问过相关的问题
版主大哥之前已初步解决了
http://bbs.csdn.net/topics/390900798
但后来发觉...如果想帮code加上一个css是不可能的
比如以下的代码
在showBBcodes()中过滤了[code]
但如果数组中加入code来显示代码, 想转义成指定的DIV...那么就会有问题了!
问题二. 如何才能一次性过滤所有function 的[code]? 比如还有 parseSmiley() 和 linkAdd()
有更智能的方法吗? 还是只能在每一个都加上?
代码补上,但因为代码中有出现[ code] 那就不用代码功能贴了抱歉
完整版代码在这:点我
<?php
class BBCode {
public function __construct(){}
private function showBBcodes($text) {
$text = htmlspecialchars($text); //编码已存在的 HTML
preg_match_all('#\[code\](.*?)\[/code]#is', $text, $stack);
// BBcode array
$find = array(
'~\[b\](.*?)\[/b\]~s',
'~\[i\](.*?)\[/i\]~s',
'~\[quote\](.*?)\[/quote\]~s',
'~\[code\](.*?)\[/code\]~s'
);
// HTML tags to replace BBcode
$replace = array(
'<b>$1</b>',
'<i>$1</i>',
'</p><blockquote>$1</blockquote></p>',
'<div class="code_box">$1</div>'
);
$text = nl2br(preg_replace($find,$replace,$text));
foreach($stack[1] as $t) {
$text = preg_replace('#\[code\].*?\[/code]#is', $t, $text,1);
}
return $text;
}
//表情转义
private function parseSmiley($text){
// Smiley to image
$smileys = array(
':wave:' => 'wave.gif',
':hahaha:' => 'hahaha.gif',
);
// Now you need find and replace
foreach($smileys as $smiley => $img){
$text = str_replace(
$smiley,
"<img src='/images/smiley/{$img}' alt='{$smiley}'/>",
$text
);
}
// Now only return it
return $text;
}
//为连结自动加上A标签
private function linkAdd($content){
//提取替换出所有A标签(统一标记<{link}>)
preg_match_all('/<a.*?href=".*?".*?>.*?<\/a>/i',$content,$linkList);
$linkList=$linkList[0];
$str=preg_replace('/<a.*?href=".*?".*?>.*?<\/a>/i','<{link}>',$content);
//提取替换出所有的IMG标签(统一标记<{img}>)
preg_match_all('/<img[^>]+>/im',$content,$imgList);
$imgList=$imgList[0];
$str=preg_replace('/<img[^>]+>/im','<{img}>',$str);
//提取替换出所有的YOUTUBE标签(统一标记<{img}>)
preg_match_all('/<iframe[^>]+>/im',$content,$youtubeList);
$youtubeList=$youtubeList[0];
$str=preg_replace('/<iframe[^>]+>/im','<{iframe}>',$str);
//提取替换标准的URL地址
$str=preg_replace('(((f|ht){1}tp://)[-a-zA-Z0-9@:%_/+.~#?&//=]+)','<a href="\\0" target="_blank" rel="nofollow">\\0</a>',$str);
//还原A统一标记为原来的A标签
$arrLen=count($linkList);
for($i=0;$i<$arrLen;$i++){
$str=preg_replace('/<{link}>/',$linkList[$i],$str,1);
}
//还原IMG统一标记为原来的IMG标签
$arrLen2=count($imgList);
for($i=0;$i<$arrLen2;$i++){
$str=preg_replace('/<{img}>/',$imgList[$i],$str,1);
}
//还原IMG统一标记为原来的YOUTUBE标签
$arrLen2=count($youtubeList);
for($i=0;$i<$arrLen2;$i++){
$str=preg_replace('/<{iframe}>/',$youtubeList[$i],$str,1);
}
return $str;
}
function noparse( $text = null ) {
$text = str_replace( array( '[', ']' ), array( '*NoParse1*', '*NoParse2*' ), $text );
return $text;
}
public function parser($message){
$parser_content = $message;
$parser_content = $this->showBBcodes($parser_content);
$parser_content = $this->parseSmiley($parser_content);
$parser_content = $this->linkAdd($parser_content);
return $parser_content;
}
}
------解决思路----------------------
请给出测试文本和期望的结果