Voici quelques fonctions fréquemment utilisées, dont certaines proviennent de programmes d'autres personnes...
1. Générer une fonction de chaîne aléatoire
function random($length) {
$hash = '';
$chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyz';
$max = strlen($chars) - 1;
mt_srand((double)microtime() * 1000000);
pour($i = 0; $i < $longueur; $i++) {
$hash .= $chars[mt_rand(0, $max)];
}
renvoie $hash ;
}
2. Intercepter une chaîne d'une certaine longueur
Remarque : Cette fonction est valable pour
la fonction GB2312 wordcut($string, $length,$sss=0) {
si(strlen($chaîne) > $longueur) {
si($sss){
$longueur=$longueur - 3 ;
$addstr='...';
}
pour($i = 0; $i < $longueur; $i++) {
si(ord($string[$i]) > 127) {
$wordscut .= $string[$i].$string[$i + 1];
$i++;
} autre {
$wordscut .= $string[$i];
}
}
return $wordscut.$addstr
;
renvoie $string;
}
3. Obtenez la
fonction d'adresse IP du client GetIP(){
if (getenv("HTTP_CLIENT_IP") && strcasecmp(getenv("HTTP_CLIENT_IP"), "inconnu"))
$ip = getenv("HTTP_CLIENT_IP");
sinon if (getenv("HTTP_X_FORWARDED_FOR") && strcasecmp(getenv("HTTP_X_FORWARDED_FOR"), "inconnu"))
$ip = getenv("HTTP_X_FORWARDED_FOR");
sinon if (getenv("REMOTE_ADDR") && strcasecmp(getenv("REMOTE_ADDR"), "inconnu"))
$ip = getenv("REMOTE_ADDR");
sinon if (isset($_SERVER['REMOTE_ADDR']) && $_SERVER['REMOTE_ADDR'] && strcasecmp($_SERVER['REMOTE_ADDR'], "inconnu"))
$ip = $_SERVER['REMOTE_ADDR'];
autre
$ip = "inconnu" ;
retour($ip);
}
4. Créez la fonction de dossier correspondante
crééeir($dir='')
{
si (!is_dir($dir))
{
$temp = exploser('/',$dir);
$cur_dir = '';
pour($i=0;$i<count($temp);$i++)
{
$cur_dir .= $temp[$i].'/';
si (!is_dir($cur_dir))
{
@mkdir($cur_dir,0777);
}
}
}
}
5. Déterminez la
fonction d'adresse e-mail checkEmail($inAddress)
{
return (ereg("^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+(.[a-zA-Z0-9_-])+", $inAddress));
}
6.
Fonction de saut gotourl($message='',$url='',$title='')
{
$html="<html><tête>";
si(!vide($url))
$html .="<meta http-equiv='refresh' content="3;url='".$url."'">";
$html .="<link href='../templates/style.css' type=text/css rel=stylesheet>";
$html .="</head><body><br><br><br><br>";
$html .="<table cellpacing='0' cellpadding='0' border='1' width='450' align='center'>";
$html .="<tr><td bgcolor='#ffffff'>";
$html .="<table border='1' cellpacing='1' cellpadding='4' width='100%'>";
$html .="<tr class='m_title'>";
$html .="<td>".$titre."</td></tr>";
$html .="<tr class='line_1'><td align='center' height='60'>";
$html .="<br>".$message."<br><br>";
si (!empty($url))
$html .="Le système reviendra dans 3 secondes<br>Si votre navigateur ne peut pas revenir automatiquement, veuillez cliquer sur [<a href=".$url." target=_self>ici</a>] pour entrer";
autre
$html .="[<a href='#' onclick='history.go(-1)'>Retour</a>]";
$html .="</td></tr></table></td></tr></table>";
$html .="</body></html>";
écho $html;
sortie;
}
7. Fonction de pagination (deux fonctions utilisées ensemble)
getpage($sql,$page_size=20)
{
global $page,$totalpage,$sums; //out param
$page = $_GET["page"];
//$chaquepage = $page_size;
$pagesql = strstr($sql," de ");
$pagesql = "sélectionnez le nombre (*) comme identifiants ".$pagesql;
$result = mysql_query($pagesql);
if($rs = mysql_fetch_array($result)) $sums = $rs[0];
$totalpage = plafond($sommes/$page_size);
si((!$page)||($page<1)) $page=1;
$startpos = ($page-1)*$page_size;
$sql .=" limite $startpos,$page_size ";
renvoie $sql ;
}
fonction showbar ($string="")
{
global $page,$totalpage;
$out="Total<font color='red'><b>".$totalpage."</b></font>page ";
$numérolien =4 ;
$start = ($page-round($linkNum/2))>0 ($page-round($linkNum/2)) : "1";
$fin = ($page+round($linkNum/2))<$totalpage ? ($page+round($linkNum/2)) : $totalpage;
$prestart=$start-1;
$nextend=$fin+1;
si($page<>1)
$out .= "<a href='?page=1&&".$string."'title=Première page>Première page</a> ";
si($début>1)
$out.="<a href='?page=".$prestart."' title=>..<<</a> ";
pour($t=$start;$t<=$end;$t++)
{
$out .= ($page==$t) ? "<font color='red'><b>[".$t."]</b></font> " '?page=$t&&".$string."'>$t</a> ";
}
si($fin<$totalpage)
$out.="<a href='?page=".$nextend."&&".$string."' title=">>>..</a>";
si($page<>$totalpage)
$out .= " <a href='?page=".$totalpage."&&".$string."' title=lastpage>lastpage</a>";
retourner $out ;
}
?>