1. ランダムな文字列関数を生成します
functionrandom($length) {
$hash = '';
$chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyz';
$max = strlen($chars);
mt_srand ( (double)microtime() * 1000000);
for($i = 0; $i < $length; $i++) {
$hash .= $chars[mt_rand(0, $max)] }
return $hash;
}
?> =0) {
if(strlen($string) > $length) {
$addstr=' ... ';
$i if(ord($string[$i]) > 127) {
$wordscut .= $string[$i].$string[$i + 1]
$i++ } else {
$; Wordscut .= $string[$i];
}
}
return $string;
3. ;?php
function GetIP(){
$ip = getenv("HTTP_CLIENT_IP")
$ip = getenv("HTTP_X_FORWARDED_FOR"); else if (getenv(" REMOTE_ADDR") && strcasecmp(getenv("REMOTE_ADDR") 、 "不明"))
$ip = getenv("REMOTE_ADDR"); ']) && $_SERVER['REMOTE_ADDR' ] && strcasecmp($_SERVER['REMOTE_ADDR'], "unknown")) $ip = "unknown" ;
return($ip);
?>( '/'、$ dir); $ cur_dir ir。 ^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+(.[ a-zA-Z0-9_-])+",$inAddress));
}
?>
6.ジャンプ
function gotourl($message='',$url ='',$title='')
{
$html ="< html>
";
if(!empty($url))
$html .="
";
$html .="
";
$html .="
";
$html .="<表 cellpacing= '0' cellpadding='0' border='1' width='450' align= 'center'>";
$html .="
"; $html .=""; $html .=" "; $html .="".$title."< /td> | "; $html .=""; $html .="< ;br>".$message."
"; if (!empty($url)) $html .="システムは 3 秒以内に戻ります ブラウザが戻れない場合自動的にクリックしてください [here] Enter"; else $html .="[Return]"; $html .="< /td> | |
/table>";
$html .="";
echo $html;
exit;
}
?>
7.分页(两个関数数演算使用)
function getpage($sql,$page_size=20)
{
global $page,$totalpage,$sums; //out param
$page = $_GET["page"];
//$eachpage = $page_size;
$pagesql = strstr($sql," from ");
$pagesql = 「ID として count(*) を選択」.$pagesql;
$result = mysql_query($pagesql);
if($rs = mysql_fetch_array($result)) $sums = $rs[0];
$totalpage = ceil($sums/$page_size);
if((!$page)||($page<1)) $page=1;
$startpos = ($page-1)*$page_size;
$sql .=" limit $startpos,$page_size ";
$sql を返す;
}
function showbar($string="")
{
global $page,$totalpage;
$out="共
".$totalpage."页 ";
$linkNum =4;
$start = ($page-round($linkNum/2))>0 ? ($page-round($linkNum/2)) : "1";
$end = ($page+round($linkNum/2))<$totalpage ? ($page+round($linkNum/2)) : $totalpage;
$prestart=$start-1;
$nextend=$end+1;
if($page<>1)
$out .= "
第一页 ";
if($start>1)
$out.="
..<< ";
for($t=$start;$t<=$end;$t++)
{
$out .= ($page==$t) ? "
[".$t."] " : "
$t ";
}
if($end<$totalpage)
$out.="
>> ;...";
if($page<>$totalpage)
$out .= "
最終页< /a>";
$out を返す;
}
?>
http://www.bkjia.com/PHPjc/317337.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/317337.html技術記事 1.生成随机字符串関数数 ?php functionrandom($length){ $hash=''; $chars='ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyz'; $max=strlen($chars)-1; mt_srand((ダブル...