会员: 密码:  免费注册 | 忘记密码 | 会员登录 网页功能: 加入收藏 设为首页 网站搜索  
 安全技术技术文档
  · 安全配制
  · 工具介绍
  · 黑客教学
  · 防火墙
  · 漏洞分析
  · 破解专题
  · 黑客编程
  · 入侵检测
 安全技术论坛
  · 安全配制
  · 工具介绍
  · 防火墙
  · 黑客入侵
  · 漏洞检测
  · 破解方法
  · 杀毒专区
 安全技术工具下载
  · 扫描工具
  · 攻击程序
  · 后门木马
  · 拒绝服务
  · 口令破解
  · 代理程序
  · 防火墙
  · 加密解密
  · 入侵检测
  · 攻防演示
技术文档 > Web开发 > PHP
一个ubbcode的函数,速度很快.
发表日期:2004-07-22 18:30:01作者: 出处:  

前面见到有人发表
但是速度比较慢,也非常长
这里给出一种

function ubb($str) {  
$color=Array('red','blue','green');
$str=eregi_replace('[url]([a-zA-Z0-9@:%_.~#-?&]+)[/url]','<a href=http://\1>\1</a>',$str);//url
$str=eregi_replace('[url=http://([a-zA-Z0-9@:%_.~#-?&]+)](.+)[/url]','<a href=\1 target=_blank>\2</a>',$str);
$str=eregi_replace('[url=([a-zA-Z0-9@:%_.~#-?&]+)](.+)[/url]','<a href=http://\1 target=_blank>\2</a>',$str);
$str=eregi_replace('[img]([a-zA-Z0-9@:%_.~#-?&]+)[/img]','<img src=http://\1>\1</img>',$str);//img
$str=eregi_replace('[h([1-6])](.+)[/h[1-6]]','<h\1>\2</h\1>',$str);//h1-6
$str=eregi_replace('[email]([_.0-9a-z-]+@([0-9a-z][0-9a-z-]+.)+[a-z]{2,3})[/email]','<a href=mailto:\1>\1</a>',$str);//email
$str=eregi_replace('[email=([_.0-9a-z-]+@([0-9a-z][0-9a-z-]+.)+[a-z]{2,3})](.+)[/email]','<a href=mailto:\1>\2</a>',$str);
$str=eregi_replace('[b](.+)[/b]','<b>\1</b>',$str);
$str=eregi_replace('[i](.+)[/i]','<i>\1</i>',$str);
$str=eregi_replace('[size=(.+)](.+)[/size]','<font size=\1>\2</font>',$str);
$str=eregi_replace('[color=(.+)](.+)[/color]','<font color=\1>\2</font>',$str);
$str=eregi_replace('[sub](.+)[/sub]','<sub>\1</sup>',$str);//下裱
$str=eregi_replace('[sup](.+)[/sup]','<sup>\1</sup>',$str);//上标
for($i=0;$i<=count($color);$i++)$str=eregi_replace('['.$color[$i].'](.+)[/'.$color[$i].']','<font color='.$color[$i].'>\1</font>',$str);
$str=preg_replace("/[quote](.+?)[/quote]/is","<blockquote><font size='1' face='Courier New'>quote:</font><hr>\1<hr></blockquote>", $str);
$str=preg_replace("/[code](.+?)[/code]/is","<blockquote><font size='1' face='Times New Roman'>code:</font><hr color='lightblue'><i>\1</i><hr color='lightblue'></blockquote>", $str);
$str=preg_replace("/[sig](.+?)[/sig]/is","<div style='text-align: left;color: darkgreen;margin-left: 5%'><br><br>--------------------------<br>\1<br>--------------------------</div>", $str);
return $str;

返回顶部】 【打印本页】 【关闭窗口

关于我们 / 给我留言 / 版权举报 / 意见建议 / 网站编程QQ群   
Copyright ©2003- 2024 Lihuasoft.net webmaster(at)lihuasoft.net 加载时间 0.00155