`
wangminshe89
  • 浏览: 690775 次
文章分类
社区版块
存档分类
最新评论

我所用的PHP函数

 
阅读更多

$string="连接http://www.phpx.com站点";
//连接后需要有个空格或回车。

$string=eregi_replace("http://([^,/r/n]*)","<ahref=//0target=_blank>//0</a>",$string);
$string=eregi_replace("ftp://([^,/r/n]*)","<ahref=//0target=_blank>//0</a>",$string);

print$string;
<?php
//------------------------ 全局用的函数 ------------------------------------------
function query($vars,$table,$condition)
{
$sql="select $vars from $table $condition";
$result=mysql_query($sql) or die(mysql_error());
return $result;
}
//-------------------------- END ------------------------------------------------
/********************************* 字段处理 ************************************/
function TextFilter($str)
{
$str = chop($str);
$str = quotemeta($str);
$str = nl2br( htmlspecialchars( $str) );
$str = addslashes($str);
return $str;
}
//------------------------取出数据时的处理情况----------------------------------------
function opentext($str)
{
$str=StripSlashes($str);
$str=StripSlashes($str);
$str=nl2br($str);
return $str;
}
/*********************************** 截取指定长度字段的函数 *******************************************/
function ChgTitle($title,$length)
{
//$length = 46;
if (strlen($title)>$length)
{
$temp = 0;
for($i=0; $i<$length; $i++)
if (ord($title[$i]) > 128)// ord($str)是用来判断字符是为汉字或为字母大于128刚为汉字
$temp++;
if ($temp%2 == 0)
$title = substr($title,0,$length)."..."; //从开始到被截取处的之间的字元总长为偶数
else
$title = substr($title,0,$length+1)."..."; //从开始到被截取处的之间的字元总长为奇数
}
return $title;
}
/**************************** showShort()处理字段的函数 **********************************/
Function csubstr($str,$start,$len)
{
$strlen=strlen($str);
$clen=0;
for($i=0;$i<$strlen;$i++,$clen++)
{
if ($clen>=$start+$len)
break;
if(ord(substr($str,$i,1))>0xa0)
{
if ($clen>=$start)
$tmpstr.=substr($str,$i,2);
$i++;
}
else
{
if ($clen>=$start)
$tmpstr.=substr($str,$i,1);
}
}
return $tmpstr;
}
Function showShort($str,$len)
{
$tempstr = csubstr($str,0,$len);
//---------- 在此调用上面的函数 --------------
if ($str<>$tempstr)
$tempstr .= "..."; //要以什么结尾,修改这里就可以.
return $tempstr;
}
//----------------------- 分页函数 ------------------------------------
function listpage($list_page,$page,$query,$table,$condition)
{
//--------------------- $pages 总页数 ------------------------
//--------------------- $start 起始页 ------------------------
//--------------------- $page 当前页 ------------------------
//--------------------- $pre 前一页 ------------------------
//--------------------- $next 下一页 ------------------------
//--------------------- $list_page 每页要显示的条数 --------------
//--------------------- $table 所要查询的表 ------------------
//--------------------- $condition 查询的条件 --------------------
$result=mysql_query($query) or die(mysql_error());
$num=@mysql_num_rows($result);
if($num<$page_list)
{ $pages="1";}
else
{ $pages=@ceil($num/$list_page);}
if(!isset($stard))
{ $stard="0"; }
if(!isset($page)){ $page=1;}
$start=($page-1)*$list_page;
$pre=$page-1;
$next=$page+1;
$sql="select * from $table $condition limit $start,$list_page";
$result1=mysql_query($sql);
$numm=@mysql_num_rows($result1);
$array=array();
$array[0] = $page."|".$pages."|".$pre."|".$next;
$i =1 ;
while($arr=@mysql_fetch_array($result1))
{
$array[$i]=$arr;
$i++;
}
return $array;
}
//------------------------ 分页显示为 |<< < ..[1].2.3.4.5.6 ..> >>| -----------------
function number_show($array,$condition)
{
//------------------ $page 第几页 -------------------------------
//------------------ $page 总页数 -------------------------------
//------------------ $page 跳转的条件 ---------------------------
//--- 说明:此程序还要提高一节来实现显示如:|<<...<< n-2,n-1,n,n+1,n+2>>...>>| (其中的n为自动添加的)
$arr=explode("|",$array);
$page=$arr[0];
$pages=$arr[1];
$pre=$arr[2];
$next=$arr[3];
echo "总页数($pages): ";
if($page>0&&$page<=$pages)
{
if($page>3)
{
echo "<a href=$PHP_SELF?page=1&$condition title=首页><<&nbsp;第一页&nbsp;</a>...";
}
if($page>1)
{
echo "<a href=$PHP_SELF?page=$pre&$condition title=上一页>&nbsp;<<</a>";
}
$page1=$page-2;
$page2=$page-1;
$page3=$page+1;
$page4=$page+2;
if($page1>0)
{
echo "&nbsp;<a href=$PHP_SELF?page=$page1&$condition>$page1</a>";
}
if($page2>0)
{
echo "&nbsp;<a href=$PHP_SELF?page=$page2&$condition>$page2</a>";
}
echo "&nbsp;[$page]";
if($pages>=$page3)
//if($page3!=$pages)
{
echo "&nbsp;<a href=$PHP_SELF?page=$page3&$condition>$page3</a>";
}
//if((($pages+1)>$page4)&&($pages!=$page))
if($pages>=$page4)
{
echo "&nbsp;<a href=$PHP_SELF?page=$page4&$condition>$page4</a>";
}
if(($pages-$page-2)>0)
{
echo "&nbsp;<a href=$PHP_SELF?page=$next&$condition title=下一页>>></a>";
}
if(($pages-$page-3)>0)
{
echo "&nbsp;...<a href=$PHP_SELF?page=$pages&$condition title=尾页>最后一页>></a>";
}
}
}
function online()
{
//------------- $update_time 用户在线的更新的时间-------------------------
session_start();
$SID=session_id();
$ip = getenv('REMOTE_ADDR');
if($SESSION["name"]!="")
{
$result=mysql_query("select count(userid) from $table4 where userid='$SESSION[name]'");
$num=@mysql_result($result,"0");
if($num!=0)
{
$result=mysql_query("update $table4 set time='$time' where userid='$SESSION[name]'",$dbh);
bbs_log($table4,$PHP_SELF,"update");
if(!$result){ echo mysql_error();}
}
else
{
$result=@mysql_query("insert into $table4 (SID,userid,ip,time) values ('$SID','$SESSION[name]','$ip','$time')",$dbh);
bbs_log($table4,$PHP_SELF,"insert");
if(!$result){ echo mysql_error();}
}
}
else
{
$userid="guest";
//$SESSION["name"]="guest";
$result=mysql_query("select count(ip) from $table4 where ip='$ip'");
$num=@mysql_result($result,"0");
if($num!=0)
{
$result=mysql_query("update $table4 set time='$time' where ip='$ip'");
bbs_log($table4,$PHP_SELF,"update");
}
else
{
$result=@mysql_query("insert into $table4 (SID,userid,ip,time) values ('$SID','guest','$ip','$time')",$dbh);
bbs_log($table4,$PHP_SELF,"insert");
if(!$result){ echo "guest";/*echo mysql_error();*/}
}
}
$del_time=$time-$update_times;
$upde=@mysql_query("delete from $table4 where time<'$del_time'",$dbh);
bbs_log($table4,$PHP_SELF,"delete");
}

//--------------------------------- UBB代码处理 -------------------------------------------
/*
粗体
[b]文本[/b] 文本
斜体
[i]文本[/i] 文本
下划线
[u]文本[/u] 文本
字体大小
[size=3]文本[/size] 文本
字体颜色
[color=red]文本[/color] 文本
[color=#887766]文本[/color] 文本
嵌套运用
[b][i][size=3][color=#889900]这是字体例子[/color][/size][/i][/b]
输入网址
[url=网址]网站名称[/url] 如:[url=http://zjshl.8800.org]山顶洞人[/url]
输入邮箱
[email]simple[/email] 如:<a href=mailto:simple>simple</a>
还可以使用表情
[quote]simple[/quote]
[code]simple[/code]
[sig]simple[/sig]
自动判断网址
网址后面必须是空格、回车、中文或者无任何字符
PHP语法加亮
[php]
echo "hello world";
[/php]
echo "hello word";
*/
//--------------------------------- END UBB ----------------------------------------
// ####################### 清除HTML代码 #######################
function html_clean($content){
$content = htmlspecialchars($content);
$content = str_replace("/n", "<br>", $content);
$content = str_replace(" ", "&nbsp;&nbsp;", $content);
$content = str_replace("/t", '&nbsp;&nbsp;&nbsp;&nbsp;', $content);
return $content;
}
function ubb($Text) {
$Text=htmlspecialchars($Text);
$Text=ereg_replace("/r/n","<br>",$Text);
$Text=ereg_replace("/r","<br>",$Text);
$Text=nl2br($Text);
$Text=preg_replace("///t/is"," ",$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("//[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><br>/n",$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("//[u/](.+?)/[//u/]/is","<u>//1</u>",$Text);
//------------ 表情按钮的替换-------------------------------
$Text=preg_replace("//[:([0-9]{1,2})/]/U","<img src=images/icons///1.gif border=0 hspace=0 vspace=0>",$Text);
$Text=preg_replace("//[:([0-9]{1,2})/]/U","<img src=images/icons///2.gif border=0 hspace=0 vspace=0>",$Text);
$Text=preg_replace("//[:([0-9]{1,2})/]/U","<img src=images/icons///3.gif border=0 hspace=0 vspace=0>",$Text);
$Text=preg_replace("//[:([0-9]{1,2})/]/U","<img src=images/icons///4.gif border=0 hspace=0 vspace=0>",$Text);
$Text=preg_replace("//[:([0-9]{1,2})/]/U","<img src=images/icons///5.gif border=0 hspace=0 vspace=0>",$Text);
$Text=preg_replace("//[:([0-9]{1,2})/]/U","<img src=images/icons///6.gif border=0 hspace=0 vspace=0>",$Text);
$Text=preg_replace("//[:([0-9]{1,2})/]/U","<img src=images/icons///7.gif border=0 hspace=0 vspace=0>",$Text);
$Text=preg_replace("//[:([0-9]{1,2})/]/U","<img src=images/icons///8.gif border=0 hspace=0 vspace=0>",$Text);
$Text=preg_replace("//[:([0-9]{1,2})/]/U","<img src=images/icons///9.gif border=0 hspace=0 vspace=0>",$Text);
$Text=preg_replace("//[:([0-9]{1,2})/]/U","<img src=images/icons///10.gif border=0 hspace=0 vspace=0>",$Text);
$Text=preg_replace("//[:([0-9]{1,2})/]/U","<img src=images/icons///11.gif border=0 hspace=0 vspace=0>",$Text);
$Text=preg_replace("//[:([0-9]{1,2})/]/U","<img src=images/icons///12.gif border=0 hspace=0 vspace=0>",$Text);
$Text=preg_replace("//[:([0-9]{1,2})/]/U","<img src=images/icons///13.gif border=0 hspace=0 vspace=0>",$Text);
$Text=preg_replace("//[:([0-9]{1,2})/]/U","<img src=images/icons///14.gif border=0 hspace=0 vspace=0>",$Text);
$Text=preg_replace("//[:([0-9]{1,2})/]/U","<img src=images/icons///15.gif border=0 hspace=0 vspace=0>",$Text);
$Text=preg_replace("//[:([0-9]{1,2})/]/U","<img src=images/icons///16.gif border=0 hspace=0 vspace=0>",$Text);
$Text=preg_replace("//[:([0-9]{1,2})/]/U","<img src=images/icons///17.gif border=0 hspace=0 vspace=0>",$Text);
$Text=preg_replace("//[:([0-9]{1,2})/]/U","<img src=images/icons///18.gif border=0 hspace=0 vspace=0>",$Text);
$Text=preg_replace("//[:([0-9]{1,2})/]/U","<img src=images/icons///19.gif border=0 hspace=0 vspace=0>",$Text);
$Text=preg_replace("//[:([0-9]{1,2})/]/U","<img src=images/icons///20.gif border=0 hspace=0 vspace=0>",$Text);
$Text=preg_replace("//[:([0-9]{1,2})/]/U","<img src=images/icons///21.gif border=0 hspace=0 vspace=0>",$Text);
$Text=preg_replace("//[:([0-9]{1,2})/]/U","<img src=images/icons///22.gif border=0 hspace=0 vspace=0>",$Text);
$Text=preg_replace("//[:([0-9]{1,2})/]/U","<img src=images/icons///23.gif border=0 hspace=0 vspace=0>",$Text);
$Text=preg_replace("//[:([0-9]{1,2})/]/U","<img src=images/icons///24.gif border=0 hspace=0 vspace=0>",$Text);
$Text=preg_replace("//[:([0-9]{1,2})/]/U","<img src=images/icons///25.gif border=0 hspace=0 vspace=0>",$Text);
$Text=preg_replace("//[:([0-9]{1,2})/]/U","<img src=images/icons///26.gif border=0 hspace=0 vspace=0>",$Text);
$Text=preg_replace("//[:([0-9]{1,2})/]/U","<img src=images/icons///27.gif border=0 hspace=0 vspace=0>",$Text);
$Text=preg_replace("//[:([0-9]{1,2})/]/U","<img src=images/icons///28.gif border=0 hspace=0 vspace=0>",$Text);
$Text=preg_replace("//[:([0-9]{1,2})/]/U","<img src=images/icons///29.gif border=0 hspace=0 vspace=0>",$Text);
$Text=preg_replace("//[:([0-9]{1,2})/]/U","<img src=images/icons///30.gif border=0 hspace=0 vspace=0>",$Text); //------------- PHP 代码处理 ----------------
$Text=preg_replace("//[php/](.+?)/[//php/]/is","&&lt;? //1 ?&gt;",$Text);
//------------------- 引用处理程序
$Text=preg_replace("//[quote/](.+?)/[//quote/]/is","<TABLE bgColor=#eeffff border=1 borderColorDark=white borderColorLight=#777777 cellSpacing=0 height=80 width=600><TBODY><TR><TD vAlign=top><FONT color=#999999><P>//1</P></FONT></TD></TR></TBODY></TABLE>", $Text);
//------------------- flash 处理程序 -----------
$Text=preg_replace("//[flash/](.+?)/[//flash/]/is","<object classid=clsid:D27CDB6E-AE6D-11cf-96B8-444553540000 codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0 width=500 height=400><param name=movie value=//1><param name=quality value=high><embed src=//1 quality=high pluginspage=http://www.macromedia.com/go/getflashplayer type=application/x-shockwave-flash width=500 height=400></embed></object>", $Text);
//------------------ real 播放器处理程序 ---------
$Text=preg_replace("//[real/](.+?)/[//real/]/is","<object classid=clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA height=285 id=RAOCX name=rmplay width=356><param name=SRC value=//1><param name=CONSOLE value=Clip1><param name=CONTROLS value=imagewindow><param name=AUTOSTART value=true><embed src=//1 autostart=true controls=ImageWindow console=Clip1 pluginspage=http://www.real.com width=356 height=285></embed></object><object classid=clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA height=27 id=video1 width=356><param name=_ExtentX value=7276> <param name=_ExtentY value=1058><param name=AUTOSTART value=0><param name=SHUFFLE value=0><param name=PREFETCH value=0><param name=NOLABELS value=0><param name=CONTROLS value=ControlPanel><param name=CONSOLE value=Clip1><param name=LOOP value=0><param name=NUMLOOP value=0><param name=CENTER value=0><param name=MAINTAINASPECT value=0><param name=BACKGROUNDCOLOR value=#ffffff><embed type=audio/x-pn-realaudio-plugin console=Clip1controls=ControlPanel height=27 width=356 autostart=0 _extentx=7276 _extenty=1058 shuffle=0 prefetch=0 nolabels=0 loop=0 numloop=0 center=0 maintainaspect=0 backgroundcolor=#ffffff></embed></object>", $Text);
//------------------ Media 播放器处理程序 --------
$Text=preg_replace("//[media/](.+?)/[//media/]/is","<object align=middle class=OBJECT classid=CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95 height=320 id=MediaPlayer width=356><param name=ShowStatusBar value=-1><param name=Filename value=//1 <embed type=application/x-oleobject codebase=http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701 flename=mp src=//1 width=356 height=320></embed></object>", $Text);
$Text=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>", $Text);
$Text=preg_replace("//[sig/](.+?)/[//sig/]/is","<div style='text-align: left; color: darkgreen; margin-left: 5%'><br><br>--------------------------<br>//1<br>--------------------------</div>", $Text);
return $Text;
}
//----------------------- 用于修改资料的时候对UBB代码进行反解 -------------------
function unubb($Text)
{
$Text=str_replace("&nbsp;"," ",$Text);
$Text=str_replace("<br>","/n",$Text);
$Text=str_replace("<br>/n","/n",$Text);
//----------------- 引用部分字段处理的反编 -------------------------
$Text = eregi_replace(quotemeta("<TABLE bgColor=#eeffff border=1 borderColorDark=white borderColorLight=#777777 cellSpacing=0 height=80 width=600><TBODY><TR><TD vAlign=top><FONT color=#999999><P>"),"[quote]",$Text);
$Text = eregi_replace(quotemeta("</P></FONT></TD></TR></TBODY></TABLE>"),"[/quote]",$Text);
// $Text=preg_replace("//<TABLE bgColor=#eeffff border=1 borderColorDark=white borderColorLight=#777777 cellSpacing=0 height=80 width=600/>/<TBODY/>/</TR/>/<TD vAlign=top/>/<FONT color=#999999/>/<P/>(.+?)/<//P/>/<//FONT/>/<//TD>/<//TR/>/<//TBODY/>/<//TABLE/>/is","[quote]//1[/quote]", $Text);
//----------------- 对常见的字体,颜色等属性进行反编 -----------------
$Text=preg_replace("//<h1/>(.+?)/<//h1/>/is","[h1]//1[/h1]",$Text);
$Text=preg_replace("//<h2/>(.+?)/<//h2/>/is","[h1]//1[/h1]",$Text);
$Text=preg_replace("//<h3/>(.+?)/<//h3/>/is","[h1]//1[/h1]",$Text);
$Text=preg_replace("//<h4/>(.+?)/<//h4/>/is","[h1]//1[/h1]",$Text);
$Text=preg_replace("//<h5/>(.+?)/<//h5/>/is","[h1]//1[/h1]",$Text);
$Text=preg_replace("//<h6/>(.+?)/<//h6/>/is","[h1]//1[/h1]",$Text);
$Text=preg_replace("//<h7/>(.+?)/<//h7/>/is","[h1]//1[/h1]",$Text);
$Text=preg_replace("//<font color=(.+?)/>(.+?)/<//font/>/is","[color=//1]//2[/color]",$Text);
$Text=preg_replace("//<font size=(.+?)/>(.+?)/<//font/>/is","[size=//1]//2[/size]",$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("//<i/>(.+?)/<//i/>/is","[i]//1[/i]",$Text);
$Text=preg_replace("//<b/>(.+?)/<//b/>/is","[b]//1[/b]",$Text);
$Text=preg_replace("//<u/>(.+?)/<//u/>/is","[u]//1[/u]",$Text);
//------------------- 反编表情代码 ----------------------------
$Text=preg_replace("//<img src=images//icons//1.gif border=0 hspace=0 vspace=0/>/is","[:1]",$Text);
$Text=preg_replace("//<img src=images//icons//2.gif border=0 hspace=0 vspace=0/>/is","[:2]",$Text);
$Text=preg_replace("//<img src=images//icons//3.gif border=0 hspace=0 vspace=0/>/is","[:3]",$Text);
$Text=preg_replace("//<img src=images//icons//4.gif border=0 hspace=0 vspace=0/>/is","[:4]",$Text);
$Text=preg_replace("//<img src=images//icons//5.gif border=0 hspace=0 vspace=0/>/is","[:5]",$Text);
$Text=preg_replace("//<img src=images//icons//6.gif border=0 hspace=0 vspace=0/>/is","[:6]",$Text);
$Text=preg_replace("//<img src=images//icons//7.gif border=0 hspace=0 vspace=0/>/is","[:7]",$Text);
$Text=preg_replace("//<img src=images//icons//8.gif border=0 hspace=0 vspace=0/>/is","[:8]",$Text);
$Text=preg_replace("//<img src=images//icons//9.gif border=0 hspace=0 vspace=0/>/is","[:9]",$Text);
$Text=preg_replace("//<img src=images//icons//10.gif border=0 hspace=0 vspace=0/>/is","[:10]",$Text);
$Text=preg_replace("//<img src=images//icons//11.gif border=0 hspace=0 vspace=0/>/is","[:11]",$Text);
$Text=preg_replace("//<img src=images//icons//12.gif border=0 hspace=0 vspace=0/>/is","[:12]",$Text);
$Text=preg_replace("//<img src=images//icons//13.gif border=0 hspace=0 vspace=0/>/is","[:13]",$Text);
$Text=preg_replace("//<img src=images//icons//14.gif border=0 hspace=0 vspace=0/>/is","[:14]",$Text);
$Text=preg_replace("//<img src=images//icons//15.gif border=0 hspace=0 vspace=0/>/is","[:15]",$Text);
$Text=preg_replace("//<img src=images//icons//16.gif border=0 hspace=0 vspace=0/>/is","[:16]",$Text);
$Text=preg_replace("//<img src=images//icons//17.gif border=0 hspace=0 vspace=0/>/is","[:17]",$Text);
$Text=preg_replace("//<img src=images//icons//18.gif border=0 hspace=0 vspace=0/>/is","[:18]",$Text);
$Text=preg_replace("//<img src=images//icons//19.gif border=0 hspace=0 vspace=0/>/is","[:19]",$Text);
$Text=preg_replace("//<img src=images//icons//20.gif border=0 hspace=0 vspace=0/>/is","[:20]",$Text);
$Text=preg_replace("//<img src=images//icons//21.gif border=0 hspace=0 vspace=0/>/is","[:21]",$Text);
$Text=preg_replace("//<img src=images//icons//22.gif border=0 hspace=0 vspace=0/>/is","[:22]",$Text);
$Text=preg_replace("//<img src=images//icons//23.gif border=0 hspace=0 vspace=0/>/is","[:23]",$Text);
$Text=preg_replace("//<img src=images//icons//24.gif border=0 hspace=0 vspace=0/>/is","[:24]",$Text);
$Text=preg_replace("//<img src=images//icons//25.gif border=0 hspace=0 vspace=0/>/is","[:25]",$Text);
$Text=preg_replace("//<img src=images//icons//26.gif border=0 hspace=0 vspace=0/>/is","[:26]",$Text);
$Text=preg_replace("//<img src=images//icons//27.gif border=0 hspace=0 vspace=0/>/is","[:27]",$Text);
$Text=preg_replace("//<img src=images//icons//28.gif border=0 hspace=0 vspace=0/>/is","[:28]",$Text);
$Text=preg_replace("//<img src=images//icons//29.gif border=0 hspace=0 vspace=0/>/is","[:29]",$Text);
$Text=preg_replace("//<img src=images//icons//30.gif border=0 hspace=0 vspace=0/>/is","[:30]",$Text); //----------------- END --------------------------------------
//--------------- 反处理 FLASH 程序----------------------------
$Text=preg_replace("//<object classid=clsid:D27CDB6E-AE6D-11cf-96B8-444553540000 codebase=http:////download.macromedia.com//pub//shockwave//cabs//flash//swflash.cab#version=6,0,29,0 width=500 height=400/>/<param name=movie value=(.+?)/>/<param name=quality value=high/>/<embed src=(.+?) quality=high pluginspage=http:////www.macromedia.com//go//getflashplayer type=application//x-shockwave-flash width=500 height=400/>/<//embed/>/<//object/>/is","[flash]//1[/flash]",$Text);
//--------------  反处理 real 程序----------------------------
$Text=preg_replace("//<object classid=clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA height=285 id=RAOCX name=rmplay width=356/>/<param name=SRC value=(.+?)/>/<param name=CONSOLE value=Clip1/>/<param name=CONTROLS value=imagewindow/>/<param name=AUTOSTART value=true/>/<embed src=(.+?) autostart=true controls=ImageWindow console=Clip1 pluginspage=http:////www.real.com width=356 height=285/>/<//embed/>/<//object/>/<object classid=clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA height=27 id=video1 width=356/>/<param name=_ExtentX value=7276/> /<param name=_ExtentY value=1058/>/<param name=AUTOSTART value=0/>/<param name=SHUFFLE value=0/>/<param name=PREFETCH value=0/>/<param name=NOLABELS value=0/>/<param name=CONTROLS value=ControlPanel/>/<param name=CONSOLE value=Clip1/>/<param name=LOOP value=0/>/<param name=NUMLOOP value=0/>/<param name=CENTER value=0/>/<param name=MAINTAINASPECT value=0/>/<param name=BACKGROUNDCOLOR value=#ffffff/>/<embed type=audio//x-pn-realaudio-plugin console=Clip1controls=ControlPanel height=27 width=356 autostart=0 _extentx=7276 _extenty=1058 shuffle=0 prefetch=0 nolabels=0 loop=0 numloop=0 center=0 maintainaspect=0 backgroundcolor=#ffffff/>/<//embed/>/<//object/>/is","[real]//1[/real]",$Text);
//----------------反处理 Media 程序 ---------------------------
$Text=preg_replace("//<object align=middle class=OBJECT classid=CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95 height=320 id=MediaPlayer width=356/>/<param name=ShowStatusBar value=-1/>/<param name=Filename value=(.+?) /<embed type=application//x-oleobject codebase=http:////activex.microsoft.com//activex//controls//mplayer//en//nsmp2inf.cab#Version=5,1,52,701 flename=mp src=(.+?) width=356 height=320/>/<//embed/>/<//object/>/is","[media]//1[/media]",$Text);
//------------- END ------------------------------------------------------------------------------------
$Text=preg_replace("//<font size=(.+?)/>(.+?)/<//font/>/is","[size=//1]//2[/size]",$Text);
$Text=preg_replace("//<font color=(.+?)/>(.+?)/<//font/>/is","[color=//1]//2[/color]",$Text);
$Text=preg_replace("//<a href=mailto:(.+?)/>(.+?)/<//a/>/is","[email]//1[/email]",$Text);
$Text=preg_replace("//<img src=(.+?)/>/is","[img]//1[/img]",$Text);
$Text=preg_replace("//<a href=(.+?)/>(.+?)/<//a/>/is","[url=//1]//2[/url]",$Text);
return $Text;
}
//------------------- 为解决<br>问题写的函数 -----------------------
function managebr($string)
{
$string=str_replace("","&nbsp;",$string);
$string=str_replace("/n","<br>",$string);
$string=str_replace("/n","<br>/n",$string);
$string=preg_replace("/&lt;br&gt;/is","<br>",$string);
$string=preg_replace("//</? (.+?)/?/>/is","&lt;?//1?&gt;",$string);
return $string;
}

function user_guanxian_far($table,$n)
{
$query = "select id,num,name from $table where fartherid='0' order by num desc";
$result = mysql_query($query) or die(mysql_error());
$i = 0;
$array = array();
while($arr = mysql_fetch_array($result))
{
$array[$i]=$arr;
$i++;
}
for($j=0;$j<count($array);$j++)
{
if($n > $array[$j]['num'])
{
$renum = $array[$j]['id'];
break;
}
}
return $renum;
}
//------------- 取出各版块的版主 -----------------------------
function getbanzhu($table,$ID)
{
$result=mysql_query("select userid from $table where group_id='administrator' and second_id='$ID'");
$i = 0;
$array=array();
while($arr = @mysql_fetch_array($result))
{
$array[$i]=$arr;
$i++;
}
return $array;
}
//---------- 当天时间的起始和终止的计算
function getalltime()
{
//$t1=date("H",time())*3600;
//$t2=(24-date("H",time())*3600;

}

function id_name($where="",$table="",$value=""){
$sql = "select $value from $table where $where";
$result = mysql_query($sql) or die(mysql_error());
$rs = mysql_fetch_row($result);
return $rs[0];
}
//------------ 返回要查询资料的条数 --------------
function num($sql)
{
$num=mysql_num_rows(query_select($sql));
return $num;
}
//----------- 记录系统日志 -------------
function bbs_log($talbe,$path,$command)
{ global $SESSION;
$homeip=getenv("REMOTE_ADDR"); //获得代理服务器的IP
$personalip=getenv("HTTP_X_FORWARDED_FOR");//获得本要的绝对IP
$time=time();
if($SESSION['userid']=="")
{
$username = "<font color=red>匿名者</a>";
}
else{
$username=$SESSION['userid'];
}
$sql = "insert into bbs_log (userid,files,biao,command,time,homeip,personalip)";
$sql.= "values('$username','$path','$talbe','$command','$time','$homeip','$personalip')";
$res = mysql_query($sql) or die(mysql_error());
return true;
}
//-------------- 限制论坛的主题访问的级别 -----------------------
function view_grade($id)
{
$sql = "select view_grade from forum where id='".$id."'";
$result = mysql_query($sql) or die(mysql_error());
$arr = mysql_fetch_array($result);
$query = mysql_query("select name from grade where fartherid='0' and id='".$arr['view_grade']."'") or die(mysql_error());
$arr = mysql_fetch_array($query);
//$num = mysql_num_rows($query);
$name = $arr['name'];
return $name;
}
//------------- 限制图片不超过的最大值
function image_w_h($src,$w,$h)
{
$data=getImageSize($src);
$width=$data[0];//为图片宽度
$height=$data[1];//为图片高度
if($width>$w)
$image_w=$w;
if($width<$w)
$image_w=$width;
if($height>$h)
$image_h=$h;
if($height<$h)
$image_h=$height;
$array=array("width"=>$image_w,"height"=>$image_h);
return $array;
}

/*$array=image_w_h("http://cimg.163.com/lady/0404/13/1081746550.jpg","400","500");
echo $array['width'];
echo "<br>/n".$array['height'];
echo "<br>/n";
echo "<img src=http://cimg.163.com/lady/0404/13/1081746550.jpg width='".$array['width']."' height='".$array['height']."'>";
*/
?>

分享到:
评论

相关推荐

    PHP常用函数总结

    PHP中学习工作中所用到的大部分的函数!希望提供学习和帮助于诸位

    php函数解析

    ### PHP函数解析 #### 字符串函数 在PHP中,字符串是极其重要的数据类型之一,用于存储和操作文本数据。本文将重点介绍一系列常用的PHP字符串处理函数及其应用场景。 ##### addcslashes (string $str, string $...

    PHP常用函数大全.pdf

    在PHP编程语言中,函数是实现特定功能的代码块,它们极大地丰富了语言的功能和灵活性。以下是一些在PHP中常用的函数,主要集中在字符串处理方面: 1. `addcslashes()`:此函数用于像C语言一样,使用反斜线(\)转义...

    PHP count_chars()函数讲解

    count_chars()函数返回字符串所用字符的信息(例如,ASCII 字符在字符串中出现的次数,或者某个字符是否已经在字符串中使用过)。 语法 count_chars( _string,mode_ ) 实例 1 返回一个字符串,包含所有在 “Hello...

    php5.4.*ts版 php_phpredis.dll

    描述中提到的“windows环境下php5.4ts所用的php_phpredis.dll”,表明这个dll文件是为在Windows操作系统上运行的PHP 5.4线程安全版本编译的。在Windows平台上,PHP有两种构建方式:NTS(非线程安全)和TS(线程安全...

    php实现的ping端口函数实例

    这个函数在计算连接到端口的响应时间时非常关键,因为它能够帮助程序员准确地测量从发送请求到接收响应所用的时间,这对于网络延迟的监控和性能评估非常重要。 5. HTTP协议的简单实现:文章中模拟了HTTP协议中的GET...

    云路PHP解密

    1. **代码分析**:首先,需要了解所用的加密算法和工具,这可能需要深入研究PHP加密库,如IonCube、Zend Guard或SourceGuardian等。 2. **反混淆**:加密的PHP代码通常会被混淆,即变量名、函数名和类名被替换为无...

    毕业论文jsp1722在线影院网站mysql.docx

    本节我们将学习如何使用 PHP 连接 MySQL 数据库,了解 PHP 的数据库函数,PEAR 的数据库函数,抽象的概念,如何使用 PHP 访问数据库中的数据,如何正确地向用户显示信息。 一、PHP 的数据库函数 PHP 提供了标准的...

    PHP源码——通讯录

    - **函数**:PHP支持自定义函数,用于封装代码,提高代码复用性。 - **文件操作**:在通讯录应用中,可能涉及读取和写入文件,如CSV或JSON格式来存储联系人信息。 2. 通讯录系统架构: - **数据库交互**:通常,...

    在线论坛php+mysql

    理解变量、数据类型、流程控制、函数、类与对象等基本概念是开发的基础。 2. MySQL数据库: MySQL是一款关系型数据库管理系统,用于存储论坛的数据,如用户信息、主题、回复、分类等。需要掌握SQL语句,包括增删改...

    php中随机函数mt_rand()与rand()性能对比分析

    具体测试分为两个部分,分别使用rand()和mt_rand()函数,并记录下所用的时间。根据提供的测试结果,虽然在某些情况下mt_rand()可能比rand()快,但具体性能提升的比例并不是固定的,而是受运行环境和多种因素影响。在...

    PHPCMS 2008 SP3 常用函数

    - `str_cut`:此函数用于截取字符串,接受三个参数,分别为待截取的字符串、截取的长度以及在截取后若字符不足时所用的替代字符。 - `string2array`:将字符串转化为数组的函数,需要一个字符串作为参数。 - `...

    php中时间函数date及常用的时间计算

    1,阅读php手册date函数 常用时间函数:  checkdate()验证一个时间是否正确  date_default_timezone_get()取得当前脚本所使用的时区  date_default_timezone_set()设定脚本所用时区 ini_set()也可以满足,或者...

    油卡回收商城系统源码 PHP+mysql

    PHP版本里面禁用函数全部删除,这个非常重要 2.把文件夹所有文件解压缩在站点目录中。 3.导入数据库文件还原数据库 4.配置数据库文件,商城配置的文件:根目录config.php 5.安装完成后,商城后台路径:http://你的...

    《PHP编程最快明白》第八讲:php启发和小结_.docx

    在《PHP编程最快明白》第八讲中,我们探讨了PHP编程的一些启发和小结,重点关注了函数的应用和代码效率的优化。在这个阶段,理解和熟练掌握每个函数是非常关键的,因为它们构成了动态网站开发的基础。例如,计数器的...

    油卡回收商城系统源码 PHP+mysql 含教程

    PHP版本里面禁用函数全部删除,这个非常重要 2.把文件夹所有文件解压缩在站点目录中。 3.导入数据库文件还原数据库 4.配置数据库文件,商城配置的文件:根目录config.php 5.安装完成后,商城后台路径:http://你...

    php获取浏览器信息

    使用`$_SERVER['HTTP_USER_AGENT']`可以获取到浏览器的完整标识字符串,然后可以通过正则表达式或预定义的函数来解析这个字符串,识别出浏览器类型。例如: ```php function getBrowser() { $u_agent = $_...

    php-7.3.20.tar.gz

    1. PHP版本兼容性:确保所用的扩展和框架支持PHP 7.3,否则可能需要升级或寻找替代方案。 2. 错误处理:TypeError是PHP 7中常见的错误类型,需要检查代码类型匹配,确保变量类型正确。 3. 扩展安装:部分扩展可能...

    基于PHP的拓网PHP网络硬盘系统(下载系统)源码.zip

    了解所用框架的特性和工作原理很重要。 3. **数据库交互**:网络硬盘系统需要存储和检索大量文件信息,因此会涉及到数据库操作。可能是MySQL、PostgreSQL或SQLite等,掌握SQL查询语言和PHP的PDO(PHP Data Objects...

Global site tag (gtag.js) - Google Analytics