|
<OL><LI><CODE><FONT face=新宋体><?PHP</FONT></CODE><LI><CODE><FONT face=新宋体>//ubbcode类 </FONT></CODE><LI><CODE><FONT face=新宋体>class ubbcode</FONT></CODE><LI><CODE><FONT face=新宋体>{ </FONT></CODE><LI><CODE><FONT face=新宋体> var $nest; // 递归深度,for debug</FONT></CODE><LI><CODE><FONT face=新宋体> //可处理标签及处理函数表 </FONT></CODE><LI><CODE><FONT face=新宋体> var $tags = array(</FONT></CODE><LI><CODE><FONT face=新宋体> 'url' => '$this->url', </FONT></CODE><LI><CODE><FONT face=新宋体> 'email' => '$this->email', </FONT></CODE><LI><CODE><FONT face=新宋体> 'mail' => '$this->email', // 为了容错,[mail]和super@mail.wilson.gs</FONT></CODE><LI><CODE><FONT face=新宋体> * [/email]</FONT></CODE><LI><CODE><FONT face=新宋体> * [email]pazee@21cn.com</FONT></CODE><LI><CODE><FONT face=新宋体> *****************************************************/</FONT></CODE><LI><CODE><FONT face=新宋体> function email($start, $para, $end, $value){ </FONT></CODE><LI><CODE><FONT face=新宋体> $sA= $value;</FONT></CODE><LI><CODE><FONT face=新宋体> $sURL= <A href="http://www.php.net/manual/zh/function.substr"><U><FONT color=#0000ff>substr</FONT></U></A>(<A href="http://www.php.net/manual/zh/function.trim"><U><FONT color=#0000ff>trim</FONT></U></A>($para), 1);</FONT></CODE><LI><CODE><FONT face=新宋体> if (<A href="http://www.php.net/manual/zh/function.strlen"><U><FONT color=#0000ff>strlen</FONT></U></A>($sURL) > 0) </FONT></CODE><LI><CODE><FONT face=新宋体> {</FONT></CODE><LI><CODE><FONT face=新宋体> if (<A href="http://www.php.net/manual/zh/function.strlen"><U><FONT color=#0000ff>strlen</FONT></U></A>($value) == 0) </FONT></CODE><LI><CODE><FONT face=新宋体> $sA= $sURL;</FONT></CODE><LI><CODE><FONT face=新宋体> }</FONT></CODE><LI><CODE><FONT face=新宋体> else </FONT></CODE><LI><CODE><FONT face=新宋体> {</FONT></CODE><LI><CODE><FONT face=新宋体> $sURL= <A href="http://www.php.net/manual/zh/function.trim"><U><FONT color=#0000ff>trim</FONT></U></A>($value);</FONT></CODE><LI><CODE><FONT face=新宋体> }</FONT></CODE><LI><CODE><FONT face=新宋体> //if (strtolower(substr($sURL, 0, 7)) != "mailto:") </FONT></CODE><LI><CODE><FONT face=新宋体> $sURL= "mail.php?email=". $sURL; </FONT></CODE><LI><CODE><FONT face=新宋体> if($this->emailcheck(<A href="http://www.php.net/manual/zh/function.substr"><U><FONT color=#0000ff>substr</FONT></U></A>($sURL, 15))) </FONT></CODE><LI><CODE><FONT face=新宋体> return "<a href=\"$sURL\" class=\"small\" target=_blank>$sA</a>"; </FONT></CODE><LI><CODE><FONT face=新宋体> else</FONT></CODE><LI><CODE><FONT face=新宋体> return <A href="http://www.php.net/manual/zh/function.sprintf"><U><FONT color=#0000ff>sprintf</FONT></U></A>("[%s%s]%s[%s]", $start, $para, $value, $end);</FONT></CODE><LI><CODE><FONT face=新宋体> } </FONT></CODE><LI><CODE><FONT face=新宋体> /*****************************************************</FONT></CODE><LI><CODE><FONT face=新宋体> * 显示图片;如下用法认为合法</FONT></CODE><LI><CODE><FONT face=新宋体> * [img=www.21cn.com/title.jpg][/img]</FONT></CODE><LI><CODE><FONT face=新宋体> * </FONT></CODE><LI><CODE><FONT face=新宋体> *****************************************************/</FONT></CODE><LI><CODE><FONT face=新宋体> function img($start, $para, $end, $value){ </FONT></CODE><LI><CODE><FONT face=新宋体> $sURL= <A href="http://www.php.net/manual/zh/function.substr"><U><FONT color=#0000ff>substr</FONT></U></A>(<A href="http://www.php.net/manual/zh/function.trim"><U><FONT color=#0000ff>trim</FONT></U></A>($para), 1);</FONT></CODE><LI><CODE><FONT face=新宋体> if (<A href="http://www.php.net/manual/zh/function.strlen"><U><FONT color=#0000ff>strlen</FONT></U></A>($sURL) <= 0) </FONT></CODE><LI><CODE><FONT face=新宋体> $sURL= <A href="http://www.php.net/manual/zh/function.trim"><U><FONT color=#0000ff>trim</FONT></U></A>($value);</FONT></CODE><LI><CODE><FONT face=新宋体> //$sURL= $this->formatURL($sURL);</FONT></CODE><LI><CODE><FONT face=新宋体> if ($this->checkImgURL($sURL)) </FONT></CODE><LI><CODE><FONT face=新宋体> return <A href="http://www.php.net/manual/zh/function.sprintf"><U><FONT color=#0000ff>sprintf</FONT></U></A>("<a href=\"%s\" target=\"_blank\"><img src=\"%s\" border=0 alt=\"从新窗口中浏览\"></img></a>", $sURL,$sURL); </FONT></CODE><LI><CODE><FONT face=新宋体> else</FONT></CODE><LI><CODE><FONT face=新宋体> return <A href="http://www.php.net/manual/zh/function.sprintf"><U><FONT color=#0000ff>sprintf</FONT></U></A>("[%s%s]%s[%s]", $start, $para, $value, $end);</FONT></CODE><LI><CODE><FONT face=新宋体> } </FONT></CODE><LI><CODE><FONT face=新宋体> /*****************************************************</FONT></CODE><LI><CODE><FONT face=新宋体> * 字符串从右向左循环移动 </FONT></CODE><LI><CODE><FONT face=新宋体> * 无参数</FONT></CODE><LI><CODE><FONT face=新宋体> * 等效与html的<marquee></FONT></CODE><LI><CODE><FONT face=新宋体> *****************************************************/</FONT></CODE><LI><CODE><FONT face=新宋体> function fly($start, $para, $end, $value){ </FONT></CODE><LI><CODE><FONT face=新宋体> if (<A href="http://www.php.net/manual/zh/function.strlen"><U><FONT color=#0000ff>strlen</FONT></U></A>($para)>0) // 有参数</FONT></CODE><LI><CODE><FONT face=新宋体> return <A href="http://www.php.net/manual/zh/function.sprintf"><U><FONT color=#0000ff>sprintf</FONT></U></A>("[%s%s]%s[%s]", $start, $para, $value, $end);</FONT></CODE><LI><CODE><FONT face=新宋体> else</FONT></CODE><LI><CODE><FONT face=新宋体> return '<marquee behavior=alternate scrolldelay=100>'.$value.'</marquee>'; </FONT></CODE><LI><CODE><FONT face=新宋体> } </FONT></CODE><LI><CODE><FONT face=新宋体> /*****************************************************</FONT></CODE><LI><CODE><FONT face=新宋体> * 字符串来回移动 </FONT></CODE><LI><CODE><FONT face=新宋体> * 无参数</FONT></CODE><LI><CODE><FONT face=新宋体> * 等效与html的<marquee></FONT></CODE><LI><CODE><FONT face=新宋体> *****************************************************/</FONT></CODE><LI><CODE><FONT face=新宋体> function move($start, $para, $end, $value) {</FONT></CODE><LI><CODE><FONT face=新宋体> if (<A href="http://www.php.net/manual/zh/function.strlen"><U><FONT color=#0000ff>strlen</FONT></U></A>($para)>0) // 有参数</FONT></CODE><LI><CODE><FONT face=新宋体> return <A href="http://www.php.net/manual/zh/function.sprintf"><U><FONT color=#0000ff>sprintf</FONT></U></A>("[%s%s]%s[%s]", $start, $para, $value, $end);</FONT></CODE><LI><CODE><FONT face=新宋体> else</FONT></CODE><LI><CODE><FONT face=新宋体> return '<marquee scrolldelay=100>'.$value.'</marquee>'; </FONT></CODE><LI><CODE><FONT face=新宋体> } </FONT></CODE><LI><CODE><FONT face=新宋体> /*****************************************************</FONT></CODE><LI><CODE><FONT face=新宋体> * 字符晕光效果包括 glow、shadow和blur</FONT></CODE><LI><CODE><FONT face=新宋体> * 字符晕光效果[glow=a,b,c]或者[shadow=a,b,c]</FONT></CODE><LI><CODE><FONT face=新宋体> * 3个参数允许缺省</FONT></CODE><LI><CODE><FONT face=新宋体> * 实现文字阴影特效,</FONT></CODE><LI><CODE><FONT face=新宋体> * glow, shadow,blur 属性依次为颜色、宽度和边界大小</FONT></CODE><LI><CODE><FONT face=新宋体> * wave 属性依次为变形频率、宽度和边界大小</FONT></CODE><LI><CODE><FONT face=新宋体> *****************************************************/</FONT></CODE><LI><CODE><FONT face=新宋体> function CSSStyle(&$start, &$para, &$end, &$value){</FONT></CODE><LI><CODE><FONT face=新宋体> $rets= <A href="http://www.php.net/manual/zh/function.sprintf"><U><FONT color=#0000ff>sprintf</FONT></U></A>("[%s%s]%s[%s]", $start, $para, $value, $end);</FONT></CODE><LI><CODE><FONT face=新宋体> if (<A href="http://www.php.net/manual/zh/function.strlen"><U><FONT color=#0000ff>strlen</FONT></U></A>($para)==0) </FONT></CODE><LI><CODE><FONT face=新宋体> {</FONT></CODE><LI><CODE><FONT face=新宋体> $para="=,,";</FONT></CODE><LI><CODE><FONT face=新宋体> }</FONT></CODE><LI><CODE><FONT face=新宋体> if (<A href="http://www.php.net/manual/zh/function.eregi"><U><FONT color=#0000ff>eregi</FONT></U></A>("^=([#]?[[:xdigit:]]{6}|[a-z0-9]*),([0-9]*),([0-9]*)", $para, $er_arr))</FONT></CODE><LI><CODE><FONT face=新宋体> {</FONT></CODE><LI><CODE><FONT face=新宋体> $color= ($er_arr[1] != "") ? $er_arr[1] : red; // Default Color</FONT></CODE><LI><CODE><FONT face=新宋体> $width= ($er_arr[2] != "") ? $er_arr[2] : 400; // Default Width</FONT></CODE><LI><CODE><FONT face=新宋体> $border= ($er_arr[3] != "") ? $er_arr[3] : 5; // Default Border</FONT></CODE><LI><CODE><FONT face=新宋体> switch ($start) </FONT></CODE><LI><CODE><FONT face=新宋体> {</FONT></CODE><LI><CODE><FONT face=新宋体> case "glow":</FONT></CODE><LI><CODE><FONT face=新宋体> case "shadow":</FONT></CODE><LI><CODE><FONT face=新宋体> $rets= <A href="http://www.php.net/manual/zh/function.sprintf"><U><FONT color=#0000ff>sprintf</FONT></U></A>("<font style=\"FILTER: %s(Color =%s,Strength=%s); width:%s\">%s</font>", $start, $color, $border, $width, $value);</FONT></CODE><LI><CODE><FONT face=新宋体> break;</FONT></CODE><LI><CODE><FONT face=新宋体> case "blur";</FONT></CODE><LI><CODE><FONT face=新宋体> $rets= <A href="http://www.php.net/manual/zh/function.sprintf"><U><FONT color=#0000ff>sprintf</FONT></U></A>("<font style=\"FILTER: %s(Strength=%s);color:%s; width:%s\">%s</font>", $start, $border, $color, $width, $value);</FONT></CODE><LI><CODE><FONT face=新宋体> break;</FONT></CODE><LI><CODE><FONT face=新宋体> case "wave":</FONT></CODE><LI><CODE><FONT face=新宋体> $color= ($er_arr[1] != "") ? $er_arr[1] : 4; // Default Color</FONT></CODE><LI><CODE><FONT face=新宋体> $border= ($er_arr[3] != "") ? $er_arr[3] : 2; // Default Border</FONT></CODE><LI><CODE><FONT face=新宋体> $rets= <A href="http://www.php.net/manual/zh/function.sprintf"><U><FONT color=#0000ff>sprintf</FONT></U></A>("<font style=\"FILTER: %s(Freq=%s, Strength=%s); width:%s\">%s</font>", $start, $color, $border, $width, $value);</FONT></CODE><LI><CODE><FONT face=新宋体> break;</FONT></CODE><LI><CODE><FONT face=新宋体> }</FONT></CODE><LI><CODE><FONT face=新宋体> }</FONT></CODE><LI><CODE><FONT face=新宋体> return $rets;</FONT></CODE><LI><CODE><FONT face=新宋体> } </FONT></CODE><LI><CODE><FONT face=新宋体> /*****************************************************</FONT></CODE><LI><CODE><FONT face=新宋体> * 字体颜色 xxx </FONT></CODE><LI><CODE><FONT face=新宋体> * n 可以是 #xxxxxx 或者 xxxxxx (6位16进制数)</FONT></CODE><LI><CODE><FONT face=新宋体> * red,greed,blue,black等颜色保留字也有效</FONT></CODE><LI><CODE><FONT face=新宋体> * 等效与html的<font color=n>xxx</font></FONT></CODE><LI><CODE><FONT face=新宋体> * [color]xxxx等效于 </FONT></CODE><LI><CODE><FONT face=新宋体> *****************************************************/</FONT></CODE><LI><CODE><FONT face=新宋体> function color($start, $para, $end, $value){</FONT></CODE><LI><CODE><FONT face=新宋体> $cl= <A href="http://www.php.net/manual/zh/function.strtolower"><U><FONT color=#0000ff>strtolower</FONT></U></A>(<A href="http://www.php.net/manual/zh/function.substr"><U><FONT color=#0000ff>substr</FONT></U></A>($para, 1));</FONT></CODE><LI><CODE><FONT face=新宋体> if ($cl == "")</FONT></CODE><LI><CODE><FONT face=新宋体> $cl= "red";</FONT></CODE><LI><CODE><FONT face=新宋体> if (<A href="http://www.php.net/manual/zh/function.eregi"><U><FONT color=#0000ff>eregi</FONT></U></A>("(^[#]?[[:xdigit:]]{6})|red|green|blue|yellow|blue|white|gray|brown|silver|purple|orange" ,$cl)) </FONT></CODE><LI><CODE><FONT face=新宋体> return <A href="http://www.php.net/manual/zh/function.sprintf"><U><FONT color=#0000ff>sprintf</FONT></U></A>("<font color=%s>%s</font>",$cl, $value);</FONT></CODE><LI><CODE><FONT face=新宋体> else</FONT></CODE><LI><CODE><FONT face=新宋体> return <A href="http://www.php.net/manual/zh/function.sprintf"><U><FONT color=#0000ff>sprintf</FONT></U></A>("[%s%s]%s[%s]", $start, $para, $value, $end);</FONT></CODE><LI><CODE><FONT face=新宋体> }</FONT></CODE><LI><CODE><FONT face=新宋体> /*****************************************************</FONT></CODE><LI><CODE><FONT face=新宋体> * 字体大小 [size=n]xxx 1<= n <= 7;</FONT></CODE><LI><CODE><FONT face=新宋体> * 等效与html的<font size=n>xxx</font></FONT></CODE><LI><CODE><FONT face=新宋体> *****************************************************/</FONT></CODE><LI><CODE><FONT face=新宋体> function size($start, $para, $end, $value){</FONT></CODE><LI><CODE><FONT face=新宋体> $size= <A href="http://www.php.net/manual/zh/function.substr"><U><FONT color=#0000ff>substr</FONT></U></A>($para, 1);</FONT></CODE><LI><CODE><FONT face=新宋体> if ($size >=1 && $size <=7 && (<A href="http://www.php.net/manual/zh/function.strlen"><U><FONT color=#0000ff>strlen</FONT></U></A>($para) > 1))</FONT></CODE><LI><CODE><FONT face=新宋体> return <A href="http://www.php.net/manual/zh/function.sprintf"><U><FONT color=#0000ff>sprintf</FONT></U></A>("<font size=%s>%s</font>",$size, $value);</FONT></CODE><LI><CODE><FONT face=新宋体> else</FONT></CODE><LI><CODE><FONT face=新宋体> return <A href="http://www.php.net/manual/zh/function.sprintf"><U><FONT color=#0000ff>sprintf</FONT></U></A>("[%s%s]%s[%s]", $start, $para, $value, $end);</FONT></CODE><LI><CODE><FONT face=新宋体> } </FONT></CODE><LI><CODE><FONT face=新宋体> /*****************************************************</FONT></CODE><LI><CODE><FONT face=新宋体> * 字体名字 [face=n] n字体名称,不需要引号</FONT></CODE><LI><CODE><FONT face=新宋体> * 等效与html的<font face=n>xxx</font></FONT></CODE><LI><CODE><FONT face=新宋体> *****************************************************/</FONT></CODE><LI><CODE><FONT face=新宋体> function face($start, $para, $end, $value){</FONT></CODE><LI><CODE><FONT face=新宋体> $fn= <A href="http://www.php.net/manual/zh/function.substr"><U><FONT color=#0000ff>substr</FONT></U></A>($para, 1);</FONT></CODE><LI><CODE><FONT face=新宋体> if (!<A href="http://www.php.net/manual/zh/function.eregi"><U><FONT color=#0000ff>eregi</FONT></U></A>("[[:punct:]]", $fn) && <A href="http://www.php.net/manual/zh/function.strlen"><U><FONT color=#0000ff>strlen</FONT></U></A>($para) > 1) {</FONT></CODE><LI><CODE><FONT face=新宋体> switch (<A href="http://www.php.net/manual/zh/function.strtoupper"><U><FONT color=#0000ff>strtoupper</FONT></U></A>($fn))</FONT></CODE><LI><CODE><FONT face=新宋体> {</FONT></CODE><LI><CODE><FONT face=新宋体> case "ST":</FONT></CODE><LI><CODE><FONT face=新宋体> $fn= "宋体";</FONT></CODE><LI><CODE><FONT face=新宋体> break;</FONT></CODE><LI><CODE><FONT face=新宋体> case "HT":</FONT></CODE><LI><CODE><FONT face=新宋体> $fn= "黑体";</FONT></CODE><LI><CODE><FONT face=新宋体> break;</FONT></CODE><LI><CODE><FONT face=新宋体> case "KT":</FONT></CODE><LI><CODE><FONT face=新宋体> $fn= "楷体_GB2312";</FONT></CODE><LI><CODE><FONT face=新宋体> break;</FONT></CODE><LI><CODE><FONT face=新宋体> case "FT":</FONT></CODE><LI><CODE><FONT face=新宋体> $fn= "仿宋_GB2312";</FONT></CODE><LI><CODE><FONT face=新宋体> break;</FONT></CODE><LI><CODE><FONT face=新宋体> case "YY":</FONT></CODE><LI><CODE><FONT face=新宋体> $fn= "幼圆";</FONT></CODE><LI><CODE><FONT face=新宋体> break;</FONT></CODE><LI><CODE><FONT face=新宋体> case "LS":</FONT></CODE><LI><CODE><FONT face=新宋体> $fn= "隶书";</FONT></CODE><LI><CODE><FONT face=新宋体> break;</FONT></CODE><LI><CODE><FONT face=新宋体> case "XST":</FONT></CODE><LI><CODE><FONT face=新宋体> $fn= "新宋体";</FONT></CODE><LI><CODE><FONT face=新宋体> break;</FONT></CODE><LI><CODE><FONT face=新宋体> default:</FONT></CODE><LI><CODE><FONT face=新宋体> $fn= <A href="http://www.php.net/manual/zh/function.substr"><U><FONT color=#0000ff>substr</FONT></U></A>($para, 1);</FONT></CODE><LI><CODE><FONT face=新宋体> }</FONT></CODE><LI><CODE><FONT face=新宋体> return <A href="http://www.php.net/manual/zh/function.sprintf"><U><FONT color=#0000ff>sprintf</FONT></U></A>("<font face=\"%s\">%s</font>",$fn, $value);</FONT></CODE><LI><CODE><FONT face=新宋体> }</FONT></CODE><LI><CODE><FONT face=新宋体> else</FONT></CODE><LI><CODE><FONT face=新宋体> return <A href="http://www.php.net/manual/zh/function.sprintf"><U><FONT color=#0000ff>sprintf</FONT></U></A>("[%s%s]%s[%s]", $start, $para, $value, $end);</FONT></CODE><LI><CODE><FONT face=新宋体> } </FONT></CODE><LI><CODE><FONT face=新宋体> /*****************************************************</FONT></CODE><LI><CODE><FONT face=新宋体> * 文件上传[upload]</FONT></CODE><LI><CODE><FONT face=新宋体> *****************************************************/</FONT></CODE><LI><CODE><FONT face=新宋体> function upload($start, $para, $end, $value){</FONT></CODE><LI><CODE><FONT face=新宋体> $fn= <A href="http://www.php.net/manual/zh/function.trim"><U><FONT color=#0000ff>trim</FONT></U></A>(<A href="http://www.php.net/manual/zh/function.substr"><U><FONT color=#0000ff>substr</FONT></U></A>($para, 1));</FONT></CODE><LI><CODE><FONT face=新宋体> if (!<A href="http://www.php.net/manual/zh/function.eregi"><U><FONT color=#0000ff>eregi</FONT></U></A>("[[:punct:]]", $fn) && <A href="http://www.php.net/manual/zh/function.strlen"><U><FONT color=#0000ff>strlen</FONT></U></A>($para) > 1) {</FONT></CODE><LI><CODE><FONT face=新宋体> if (<A href="http://www.php.net/manual/zh/function.eregi"><U><FONT color=#0000ff>eregi</FONT></U></A>("jpg|jpeg|bmp|gif|png", $fn)) {</FONT></CODE><LI><CODE><FONT face=新宋体> if ($this->checkImgURL($value)) </FONT></CODE><LI><CODE><FONT face=新宋体> return <A href="http://www.php.net/manual/zh/function.sprintf"><U><FONT color=#0000ff>sprintf</FONT></U></A>("<img src=\"images/%s.gif\" align=\"absmiddle\"> 此主题相关图片如下:<br><br><a href=\"%s\" target=\"_blank\"><img src=\"%s\" border=0 alt=\"从新窗口中浏览\"></img></a><br>",$fn,$value,$value);</FONT></CODE><LI><CODE><FONT face=新宋体> else </FONT></CODE><LI><CODE><FONT face=新宋体> return <A href="http://www.php.net/manual/zh/function.sprintf"><U><FONT color=#0000ff>sprintf</FONT></U></A>("[%s%s]%s[%s]", $start, $para, $value, $end); </FONT></CODE><LI><CODE><FONT face=新宋体> } elseif ($fn == "swf") {</FONT></CODE><LI><CODE><FONT face=新宋体> return <A href="http://www.php.net/manual/zh/function.sprintf"><U><FONT color=#0000ff>sprintf</FONT></U></A>("<center><img src=\"images/%s.gif\" align=\"absmiddle\"> 此主题相关Flash:<br><br>< ARAM NAME=PLAY VALUE=TRUE>< ARAM NAME=LOOP VALUE=TRUE>< ARAM NAME=QUALITY VALUE=HIGH><embed src=\"%s\" quality=high width=\"500\" height=\"300\" pluginspage=\"http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash\" type=\"application/x-shockwave-flash\"></embed><br><a href=\"%s\" class=\"small\" target=_blank>全屏欣赏</a> (点右键->另存为可将动画下载)</center>",$fn,$value,$value);</FONT></CODE><LI><CODE><FONT face=新宋体> } elseif (<A href="http://www.php.net/manual/zh/function.eregi"><U><FONT color=#0000ff>eregi</FONT></U></A>("rar|zip|doc", $fn)) {</FONT></CODE><LI><CODE><FONT face=新宋体> return <A href="http://www.php.net/manual/zh/function.sprintf"><U><FONT color=#0000ff>sprintf</FONT></U></A>("<img src=\"images/%s.gif\" align=\"absmiddle\"> <a href=\"%s\" class=\"small\" target=_blank>点击下载此主题相关附件</a><br>",$fn,$value);</FONT></CODE><LI><CODE><FONT face=新宋体> }</FONT></CODE><LI><CODE><FONT face=新宋体> } else </FONT></CODE><LI><CODE><FONT face=新宋体> return <A href="http://www.php.net/manual/zh/function.sprintf"><U><FONT color=#0000ff>sprintf</FONT></U></A>("[%s%s]%s[%s]", $start, $para, $value, $end); </FONT></CODE><LI><CODE><FONT face=新宋体> } </FONT></CODE><LI><CODE><FONT face=新宋体> /*****************************************************</FONT></CODE><LI><CODE><FONT face=新宋体> * 调试代码标签[html]</FONT></CODE><LI><CODE><FONT face=新宋体> *****************************************************/</FONT></CODE><LI><CODE><FONT face=新宋体> function html($start, $para, $end, $value)</FONT></CODE><LI><LI><CODE><FONT face=新宋体> {</FONT></CODE><LI><CODE><FONT face=新宋体> if (<A href="http://www.php.net/manual/zh/function.strlen"><U><FONT color=#0000ff>strlen</FONT></U></A>($value) > 0) {</FONT></CODE><LI><CODE><FONT face=新宋体> $value = <A href="http://www.php.net/manual/zh/function.eregi_replace"><U><FONT color=#0000ff>eregi_replace</FONT></U></A>('<br[[:space:]]*/?[[:space:]]*>', "", $value);</FONT></CODE><LI><CODE><FONT face=新宋体> return <A href="http://www.php.net/manual/zh/function.sprintf"><U><FONT color=#0000ff>sprintf</FONT></U></A>("<br><span><textarea cols=70 rows=10 class=\"code\">%s</textarea><br><input type=button value=\" 运行代码 \" onclick='runCode()' class=\"special\"> <b>[Ctrl+A 全部选择 提示:你可先修改部分代码,再按运行]</b></span><br>",$value);</FONT></CODE><LI><CODE><FONT face=新宋体> } else {</FONT></CODE><LI><CODE><FONT face=新宋体> return <A href="http://www.php.net/manual/zh/function.sprintf"><U><FONT color=#0000ff>sprintf</FONT></U></A>("[%s]%s[%s]", $start, $value, $end);</FONT></CODE><LI><CODE><FONT face=新宋体> }</FONT></CODE><LI><CODE><FONT face=新宋体> }</FONT></CODE><LI><CODE><FONT face=新宋体> /*****************************************************</FONT></CODE><LI><CODE><FONT face=新宋体> * 引用标签[quote]</FONT></CODE><LI><CODE><FONT face=新宋体> *****************************************************/</FONT></CODE><LI><CODE><FONT face=新宋体> function quote($start, $para, $end, $value)</FONT></CODE><LI><CODE><FONT face=新宋体> {</FONT></CODE><LI><CODE><FONT face=新宋体> if (<A href="http://www.php.net/manual/zh/function.strlen"><U><FONT color=#0000ff>strlen</FONT></U></A>($value) > 0) {</FONT></CODE><LI><CODE><FONT face=新宋体> return <A href="http://www.php.net/manual/zh/function.sprintf"><U><FONT color=#0000ff>sprintf</FONT></U></A>("<table width=\"100%%\" align=center border=1 bordercolor=\"#AAAAAA\"><tr bgcolor=\"#EAEAEA\"><td class=view><font color=\"#000099\"><b>以下为引用内容:</b></font><br><font color=\"#000066\">%s</font></td></tr></table><br>",$value);</FONT></CODE><LI><CODE><FONT face=新宋体> } else {</FONT></CODE><LI><CODE><FONT face=新宋体> return <A href="http://www.php.net/manual/zh/function.sprintf"><U><FONT color=#0000ff>sprintf</FONT></U></A>("[%s]%s[%s]", $start, $value, $end);</FONT></CODE><LI><CODE><FONT face=新宋体> }</FONT></CODE><LI><CODE><FONT face=新宋体> }</FONT></CODE><LI><CODE><FONT face=新宋体> /*****************************************************</FONT></CODE><LI><CODE><FONT face=新宋体> * FLASH[swf]</FONT></CODE><LI><CODE><FONT face=新宋体> *****************************************************/</FONT></CODE><LI><CODE><FONT face=新宋体> function swf($start, $para, $end, $value)</FONT></CODE><LI><LI><CODE><FONT face=新宋体> {</FONT></CODE><LI><LI><CODE><FONT face=新宋体> if (<A href="http://www.php.net/manual/zh/function.strlen"><U><FONT color=#0000ff>strlen</FONT></U></A>($value) > 0) {</FONT></CODE><LI><LI><CODE><FONT face=新宋体> return <A href="http://www.php.net/manual/zh/function.sprintf"><U><FONT color=#0000ff>sprintf</FONT></U></A> ("<br><center>< ARAM NAME=PLAY VALUE=TRUE>< ARAM NAME=LOOP VALUE=TRUE>< ARAM NAME=QUALITY VALUE=HIGH><embed src=\"%s\" quality=high width=\"500\" height=\"300\" pluginspage=\"http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash\" type=\"application/x-shockwave-flash\"></embed><br><a href=\"%s\" class=\"small\" target=_blank>全屏欣赏</a> (点右键->另存为可将动画下载)</center>",$value,$value);</FONT></CODE><LI><LI><CODE><FONT face=新宋体> } else {</FONT></CODE><LI><LI><CODE><FONT face=新宋体> return <A href="http://www.php.net/manual/zh/function.sprintf"><U><FONT color=#0000ff>sprintf</FONT></U></A>("[%s]%s[%s]", $start, $value, $end);</FONT></CODE><LI><LI><CODE><FONT face=新宋体> }</FONT></CODE><LI><LI><CODE><FONT face=新宋体> }</FONT></CODE><LI><LI><CODE><FONT face=新宋体>} </FONT></CODE><LI><CODE><FONT face=新宋体>?></FONT></CODE></LI></OL> |
|