php把ubb代码转换成html

php把ubb代码转换成html

function  ubb($Text) 
  {
  $Text=htmlspecialchars($Text);
  $Text=stripslashes($Text); 
  $Text=ereg_replace("\r\n","<br/>",$Text);
  $Text=ereg_replace("\r","<br/>",$Text);
  $Text=nl2br($Text);
  $Text=preg_replace("/\\t/is"," ",$Text);
  $Text=ereg_replace("  ","&nbsp;",$Text); 
  $Text=preg_replace("/\[h1\](.+?)\[\/h1\]/is","<h1>\\1</h1>",$Text);
  $Text=preg_replace("/\[h2\](.+?)\[\/h2\]/is","<h2>\\1</h2>",$Text);
  $Text=preg_replace("/\[h3\](.+?)\[\/h3\]/is","<h3>\\1</h3>",$Text);
  $Text=preg_replace("/\[h4\](.+?)\[\/h4\]/is","<h4>\\1</h4>",$Text);
  $Text=preg_replace("/\[h5\](.+?)\[\/h5\]/is","<h5>\\1</h5>",$Text);
  $Text=preg_replace("/\[h6\](.+?)\[\/h6\]/is","<h6>\\1</h6>",$Text);
  $Text=preg_replace("/\[center\](.+?)\[\/center\]/is","<center>\\1</center>",$Text);
  $Text=preg_replace("/\[big\](.+?)\[\/big\]/is","<big>\\1</big>",$Text);
  $Text=preg_replace("/\[small\](.+?)\[\/small\]/is","<small>\\1</small>",$Text); 
  $Text=preg_replace("/\[url\](http:\/\/.+?)\[\/url\]/is","<a  href=\\1>\\1</a>",$Text);
  $Text=preg_replace("/\[url\](.+?)\[\/url\]/is","<a  href=\'http://\\1\'>http://\\1</a>",$Text);
  $Text=preg_replace("/\[url=(http:\/\/.+?)\](.*)\[\/url\]/is","<a  href=\\1>\\2</a>",$Text);
  $Text=preg_replace("/\[url=(.+?)\](.*)\[\/url\]/is","<a  href=http://\\1>\\2</a>",$Text);
  $Text=preg_replace("/\[img\](.+?)\[\/img\]/is","<img  src=\\1  border=0>",$Text);
  $Text=preg_replace("/\[color=(.+?)\](.+?)\[\/color\]/is","<font  color=\\1>\\2</font>",$Text);
  $Text=preg_replace("/\[size=(.+?)\](.+?)\[\/size\]/is","<font  size=\\1>\\2</font>",$Text);
  $Text=preg_replace("/\[sup\](.+?)\[\/sup\]/is","<sup>\\1</sup>",$Text);
  $Text=preg_replace("/\[sub\](.+?)\[\/sub\]/is","<sub>\\1</sub>",$Text);
  $Text=preg_replace("/\[pre\](.+?)\[\/pre\]/is","<pre>\\1</pre>",$Text);
  $Text=preg_replace("/\[email\](.+?)\[\/email\]/is","<a  href=mailto:\\1>\\1</a>",$Text);
  $Text=preg_replace("/\[i\](.+?)\[\/i\]/is","<i>\\1</i>",$Text);
  $Text=preg_replace("/\[b\](.+?)\[\/b\]/is","<b>\\1</b>",$Text);
  $Text=preg_replace("/\[quote\](.+?)\[\/quote\]/is","<blockquote><font  size='1'  face='Courier  New'>quote:</font><hr>\\1<hr></blockquote>",  $Text);
  $pattern = "/(\[uploadimage\])(\d+),(.*)(\[\/uploadimage\])/U";
  $replacement = "<img src=\"\$3\" \>";
  $Text =@preg_replace($pattern, $replacement, $Text);
  $str  = $Text;
  $pattern='#\[flash=(\d+),(\d+)\](.+)\[/flash\]#';
  $last = "<center><object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0\" width=\"$2\" height=\"291\">
  <param name=\"movie\" value=\"$3\" /><param name=\"quality\" value=\"high\" /><embed src=\"$3\" quality=\"high\"  pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\"
  width=\"$2\" height=\"$1\"></embed></object><br>
  <a href=\"$3\" >[全屏欣赏 提醒:Flash中可能包含不安全内容]</a>
  </center>";
  $Text= preg_replace($pattern, $last, $str); 
  $mpg ="<center>   
  <object align=\"middle\" classid=\"clsid:22d6f312-b0f6-11d0-94ab-0080c74c7e95\" class=\"object\" id=\"mediaplayer\" width=\"$2\" height=\"290\">
  <param name=\"showstatusbar\" value=\"-1\" />
  <param name=\"filename\" value=\"$3\" />
  <embed type=\"application/x-oleobject\" codebase=\"http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#version=5,1,52,701\" filename=\"hong\" src=\"$3\" width=\"$2\" height=\"$1\">
  </embed>
  </object>
  </center>";
  $Text =preg_replace('#\[mp=(\d+),(\d+)\](.+)\[/mp\]#', $mpg, $Text);     
  return @iconv('utf-8','gbk',@iconv('gbk','utf-8',$Text));
     
  }

时间: 2024-10-29 19:40:35

php把ubb代码转换成html的相关文章

php的把ubb代码转换成html代码的程序

<?php function ubbcode($str){  //$str = str_replace("file:","file :",$str);  //$str = str_replace("files:","files :",$str);  //$str = str_replace("script:","script :",$str);  //$str = str_repl

asp ubb代码转换成html代码

Function Ubb2Html(str, showemot, showimg) ON ERROR RESUME NEXT if Not str<>"" then exit function   tmpstr="uNobwab"   str=UbbStr(str,"url")   str=UbbStr(str,"quote")   str=UbbStr(str,"color")   str=U

把c++语言转换成c语言-如何把C++语言编写的代码转换成C语言

问题描述 如何把C++语言编写的代码转换成C语言 #include <stdlib.h>#include <stdio.h> #include <string.h>#include <conio.h>#include <iostream.h>#define N 50 //系统中学生的最大数量int n=3; //学生数量的初始值struct student { int sid; char name[10]; char num[14]; float

OpenRisc入门(2) 将C语言代码转换成verilog HDL或者VHDL

引言 如何将C语言代码转换成verilog HDL或者VHDL呢? 2.1 在线转换: http://c-to-verilog.com/online.html C-to-Verilog.com是海法(Haifa)大学高层次综合领域的一个学术研究而产生的一个网站. 这个网站所用的编译器是SystemRacer综合系统的一个修改版本.这个编译器的源码可用于研究目的,并且已经发给了很多编译器的研究组织. 此外还有一些文章可供参考,这些文章介绍了这个综合器的实现原理. 2.2 下载源码,然后安装,再使用

软件指令-怎么把软件代码转换成机械动作

问题描述 怎么把软件代码转换成机械动作 各位大神,怎么把软件代码转换成机械动作?比如我的软件代码发出一个指令,能使开关闭合或者打开,需要用到什么模块以及什么技术,求各位大神指点一二!!!急急急 解决方案 啊,软件控制硬件多数都是看单片机上怎么识别缓冲区数据的,你可以查询一下单片机控制硬件方面的

有没有什么好的办法,把vb.net 的代码转换成c#.net代码

问题描述 手头上有套程序,是vb.net开发的.现在团队中,虽然vb也你能开发,但是还是c#比较熟练.有没有什么好的办法,把vb.net的代码转换成c#.net代码.整体或局部转换都可以. 解决方案 解决方案二:有网站和转换工具,但效果都不怎么好,你可以在网上找找尝试下...解决方案三:网上有转换器解决方案四: 解决方案五:微软有一套基于Roslyn的转换程序,googleRoslynVBC#Converter.网上的那种转换程序不经过语法分析,是不严肃的.无论使用什么方式转换,都需要建立单元测

这是我在百度上找打demo 求解怎么加代码转换成城市位置阿 求解

问题描述 这是我在百度上找打demo 求解怎么加代码转换成城市位置阿 求解 package wonder.gzmap; import com.baidu.mapapi.BMapManager; import com.baidu.mapapi.GeoPoint; import com.baidu.mapapi.LocationListener; import com.baidu.mapapi.MKAddrInfo; import com.baidu.mapapi.MKBusLineResult;

c#-请教如何将如下VC++代码转换成C#代码,谢谢

问题描述 请教如何将如下VC++代码转换成C#代码,谢谢 int nKeyLen = strKey.GetLength();if (nKeyLen == 0) strKey = _T(""xxsswww"");srand((unsigned)time(NULL));int nRange = 256;int nOffset = (rand() % nRange);CString strDest = _T("""");strDes

php ubb转换成html,html转换成ubb代码

php ubb转换成html,html转换成ubb代码 function htmlToUBB($str) {  $str = preg_replace("/<img[^>]+src="([^"]+)"[^>]*>/i","[img]$1[/img]",$str);  $str = preg_replace("/<embed[^>]+src="([^"]+)"[^