Home > php教程 > php手册 > php Ubb代码编辑器函数代码

php Ubb代码编辑器函数代码

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-13 11:59:22
Original
961 people have browsed it

复制代码 代码如下:


/*
php Ubb代码编辑器
*/
function get_ubb($ubb){
$ubb=preg_replace("/([B])(.*)([/B])/","\2" ,$ubb);//替换B粗体字
$ubb=preg_replace("/([I])(.*)([/I])/","\2" ,$ubb);
$ubb=preg_replace("/([U])(.*)([/U])/","\2" ,$ubb);
$ubb=preg_replace("/([LEF])(.*)([/LEF])/","

\2
" ,$ubb);
$ubb=preg_replace("/([MID ])(.*)([/MID ])/","
\2
" ,$ubb);
$ubb=preg_replace("/([RIG])(.*)([/RIG])/","
\2
" ,$ubb);
$ubb=preg_replace("/([LINK])(.*)([/LINK])/","\2",$ubb);
$ubb=preg_replace("/([Email])(.*)([/Email])/","\2",$ubb);
$ubb=preg_replace("/([IMAGE])(.*)([/IMAGE])/","php Ubb代码编辑器函数代码",$ubb);
$ubb=preg_replace("/([FLASH])(.*)([/FLASH])/"," " ,$ubb);
$ubb=preg_replace("/([MUSIC])(.*)([/MUSIC])/","" ,$ubb);
$ubb=preg_replace("/([PHOTO name=)([0-9]*)(])/","php Ubb代码编辑器函数代码" ,$ubb);
$ubb=preg_replace("/([FONT=)(.{1,10})(])(.*)([/FONT])/","
\4
" ,$ubb);
$ubb=preg_replace("/([FONT-SIZE=)([0-9]*)(])(.*)([/FONT-SIZE])/","
\4
" ,$ubb);
$ubb=preg_replace("/([FONT-COLOR=)(.{1,10})(])(.*)([/FONT-COLOR])/","
\4
" ,$ubb);
//$ubb=preg_replace("/([])(.*)([/])/","" ,$ubb);
return $ubb;
}
$str=get_ubb($_POST['cont']);
$str="
[FONT=黑体]asdasd
asdasdas[/FONT]
";
echo get_ubb($str);
?>
Related labels:
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template