当前位置:Gxlcms > PHP教程 > 用PHP和ACCESS写聊天室(三)_PHP教程

用PHP和ACCESS写聊天室(三)_PHP教程

时间:2021-07-01 10:21:17 帮助过:18人阅读

cinput.php3
如下:


输入






function suiji($max){
srand((double)microtime()*1000000);
$x=rand();
$y=getrandmax();
$r=$x/$y*($max-1);
$r=round($r++);
return $r;
}

function StrOccurs($sStr, $sFind){
$sTemp=$sStr;
$iLen=strlen($sFind);
$iCount=0;
while (true){
if (strstr($sTemp, $sFind))
break;
else{
$sTemp = substr($sTemp,strpos($sTemp,$sFind)+$iLen);
$iCount++;
}
}
return $iCount;
}

function StrDupl($sStr, $iCnt){
$ret="";
for($i=1;$i<=$iCnt;$i++)
$ret.=$sStr;
return $ret;
}

function DelQuot($sStr){
$s=str_replace(chr(124),"¦",$sStr);
$s=str_replace(chr(39),"´",$s);
$s=str_replace(chr(34),""",$s);
return $s;
}

function DelTag($sStr){
$bNeed="False";
$sOther=strtoupper($sStr);
if ($bNeed!="True" || !strstr($sOther," if ($bNeed!="True" || !strstr($sOther," if ($bNeed!="True" || !strstr($sOther," if ($bNeed!="True" || !strstr($sOther," if ($bNeed!="True" || !strstr($sOther," if ($bNeed!="True" || !strstr($sOther," if ($bNeed!="True" || !strstr($sOther," if ($bNeed!="True" || !strstr($sOther," if ($bNeed!="True" || !strstr($sOther," if ($bNeed!="True" || !strstr($sOther," if ($bNeed!="True" || !strstr($sOther,"



【本文版权归作者与奥索网共同拥有,如需转载,请注明作者及出处】


www.bkjia.comtruehttp://www.bkjia.com/PHPjc/316460.htmlTechArticlecinput.php3 如下: html head title输入/title meta http-equiv=Content-Type content=text/html; charset=gb2312 link rel=stylesheet href=main.css type=text/css script language=JavaSc...

人气教程排行