1. Generate random string function
function random($length) {
$hash = '';
$chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyz';
$max= strlen($ chars) - 1;
mt_srand( (double)microtime() * 1000000);
for($i = 0; $i < $length; $i++) {
$hash .= $chars[mt_rand(0, $max)];
}
return $hash;
}
?>
2. Intercept a string of a certain length
Note: This function is valid for GB2312 use
function wordscut($string, $length,$sss=0) {
if (strlen($string) > $length) {
< $length; $i++) {
if(ord($string[$i]) > 127) {
$wordscut .= $string[$i].$string[$i + 1];
$i++ ;
} else {
.= $string[$i];
}
}
return $wordscut.$addstr;
}
return $string;
}
?>
3. Obtain the client IP address
function GetIP(){
env("HTTP_CLIENT_IP");
using getenv("HTTP_X_FORWARDED_FOR") && strcasecmp(getenv("HTTP_X_FORWARDED_FOR"), "unknown"))
else if (getenv("REMOTE_ADDR") && strcasecmp(getenv("REMOTE_ADDR") ), "unknown"))
$ip = getenv("REMOTE_ADDR"); mp($_SERVER['REMOTE_ADDR'] , "unknown")) return($ip);
?> = explode('/' . = $temp[$i].'/';
inAddress)
{
return (ereg("^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+(.[a-zA-Z0-9_-] )+",$inAddress));
}
?>
6.Jump
function gotourl($message='',$url='',$title='')
{
$html ="
"; $html .="
|
以上就介绍了https://exo-l.smtown.com/home 一些常用的php函数,包括了https://exo-l.smtown.com/home方面的内容,希望对PHP教程有兴趣的朋友有所帮助。