内容:
コードをコピー コードは次のとおりです:
<
function GetIP() { // IP を取得
if ($_SERVER["HTTP_X_FORWARDED_FOR"])
$ip = $_SERVER["HTTP_X_FORWARDED_FOR"];
else if ($_SERVER["HTTP_CLIENT_IP"])
$ip = $ _SERVER[" HTTP_CLIENT_IP"];
else if ($_SERVER["REMOTE_ADDR"])
$ip = $_SERVER["REMOTE_ADDR"]
else if (getenv("HTTP_X_FORWARDED_FOR"))
$ip = getenv("HTTP_X_FORWARDED_FOR");
else if (getenv("HTTP_CLIENT_IP"))
$ip = getenv("HTTP_CLIENT_IP")
else if (getenv("REMOTE_ADDR");
$ip = getenv("REMOTE_ADDR");
else
$ip = "不明"
return $ip
;
コードをコピーします コードは次のとおりです:
function DateAdd($date, $int , $unit = "d ") { //時間の増加 (時間、分、秒を増やすように改善し、時間があるときに追加することもできます)コードは次のとおりです: function check_date($ date) { //日付が有効な日付かどうかを確認します
$dateArr =explode("-", $date);if (is_numeric($) dateArr[0]) && is_numeric($dateArr[1]) && is_numeric ($dateArr[2])) {
return checkdate($dateArr[1],$dateArr[2],$dateArr[0]);
}
return false;
}
function check_time($time) { //時間が正しいかどうかを確認します
$timeArr =explode(":", $time); 🎜>if (is_numeric($timeArr[0]) && is_numeric($timeArr[1]) && is_numeric($timeArr[2])) {
if (($timeArr[0] >= 0 && $timeArr) [0] = 0 && $timeArr[1] = 0 && $timeArr[2] true を返す;
else
false を返す
}
コードをコピー
コードは次のとおりです:
function DateDiff($date1, $date2, $unit = "") { //時間比較関数。 2 つの日付間の秒、分、時間、または日switch ($unit) { case 's': $dividend = 1 case 'i':
$配当 = 60;ケース 'h':
$配当 = 3600;
ケース 'd':
$配当 = 86400; >break;
デフォルト:
$dividend = 86400;
$time1 = strtotime($date1);
if ($ time1 && $time2)
return (float)($time1 - $time2) / $dividend;
return false>}
?>
PHP リダイレクト
コードをコピー
コードは次のとおりです:
<
方法 1: header("Location:index? .php");
方法 2: echo "
方法 3: echo "";
コードをコピー> コードは次のとおりです:
関数browse_infor()
{
$browser="";$browserver="";
$Browsers =array("Lynx","MOSAIC","AOL","Opera","JAVA","MacWeb","WebExplorer","OmniWeb");
$Agent = $GLOBALS["HTTP_USER_AGENT"];
for ($i=0; $i<=7; $i )
{
if (strpos($Agent,$Browsers[$i]))
{
$browser = $ブラウザ[$i];
$browserver ="";
}
}
if (ereg("Mozilla",$Agent) && !ereg("MSIE",$Agent))
{
$temp =explode("(", $Agent); $Part=$temp[0];
$temp =explode("/", $Part);
$temp =explode(" ",$ブラウザーバー); $browserver=$temp[0];
$browserver =preg_replace("/([d.] )/","1",$browserver);
$browser = "Netscape Navigator";
}
if (ereg("Mozilla",$Agent) && ereg("Opera",$Agent))
{
$temp = explode("(", $Agent); $Part=$temp[1];
$temp =explode(")", $Part);
$temp = explode(" ",$browserver);$browserver=$temp[2]
$browserver =preg_replace("/([d.] )/","1",$browserver); = " $browserver";
$browser = "Opera";
if (ereg("Mozilla",$Agent) && ereg("MSIE",$Agent))
🎜>$temp =explode("(", $Agent); $Part=$temp[1];
$temp =explode(";",$Part); $Part=$temp[1];
$temp =explode(" ",$Part);$browserver=$temp[2];
$browserver =preg_replace("/([d.] )/","1",$browserver);
$browserver = " $browserver";
$browser = "Internet Explorer";
}
if ($browser!="")
{
$browseinfo = "$browser$browserver";
}
else
{
$browseinfo = "不明";
}
$browseinfo を返す;
}
//调用メソッド$browser=browseinfo() ; 直接返結果
?>
获取访问者操作系统
代码如下: 関数 osinfo() {
$os="";$Agent = $GLOBALS["HTTP_USER_AGENT"];
if (eregi('win',$Agent) && strpos($Agent, '95')) {
$os="Windows 95";
}
elseif (eregi('win 9x',$Agent) && strpos($Agent, '4.90')) {
$os="Windows ME";
}
elseif (eregi('win',$Agent) && ereg('98',$Agent)) {
$os="Windows 98";
}
elseif (eregi('win',$Agent) && eregi('nt 5.0',$Agent)) {
$os="Windows 2000";
}
elseif (eregi('win',$Agent) && eregi('nt',$Agent)) {
$os="Windows NT";
}
elseif (eregi('win',$Agent) && eregi('nt 5.1',$Agent)) {
$os="Windows XP";
}
elseif (eregi('win',$Agent) && ereg('32',$Agent)) {
$os="Windows 32";
}
elseif (eregi('linux',$Agent)) {
$os="Linux";
}
elseif (eregi('unix',$Agent)) {
$os="Unix";
}
elseif (eregi('sun',$Agent) && eregi('os',$Agent)) {
$os="SunOS";
}
elseif (eregi('ibm',$Agent) && eregi('os',$Agent)) {
$os="IBM OS/2";
}
elseif (eregi('Mac',$Agent) && eregi('PC',$Agent)) {
$os="Macintosh";
}
elseif (eregi('PowerPC',$Agent)) {
$os="PowerPC";
}
elseif (eregi('AIX',$Agent)) {
$os="AIX";
}
elseif (eregi('HPUX',$Agent)) {
$os="HPUX";
}
elseif (eregi('NetBSD',$Agent)) {
$os="NetBSD";
}
elseif (eregi('BSD',$Agent)) {
$os="BSD";
}
elseif (ereg('OSF1',$Agent)) {
$os="OSF1";
}
elseif (ereg('IRIX',$Agent)) {
$os="IRIX";
}
elseif (eregi('FreeBSD',$Agent)) {
$os="FreeBSD";
}
if ($os=='') $os = "不明";
$os を返します;
}
//调用メソッド$os=os_infor() ;
?>
文件格式类
代码如下:
$mime_types = array(
'gif' => 'image/gif',
'jpg' => 'image/jpeg',
'jpeg' => 'image/ jpeg'、
'jpe' => '画像/jpeg'、
'bmp' => '画像/bmp'、
'png' => >'tif' => '画像/tiff'、
'tiff' => '画像/x-pict'、
' ' => '画像/x-pict'、
'pct' => '画像/x-pict'、
'tif'、
'tiff' => '画像/tiff'、
'psd' => '画像/x-photoshop'、
'swf' => 'アプリケーション/x-shockwave-flash'、
'js ' => 'アプリケーション/x-javascript'、
'pdf' => 'アプリケーション/pdf'、
'ps' => ; 'アプリケーション/ポストスクリプト'、
'ai' => 'アプリケーション/ポストスクリプト'、
'wmf' => 'アプリケーション/x-msmetafile'、
'css' => /css',
'htm' => 'text/html',
'html' => 'text/html',
'txt' => 🎜>'xml' => 'text/xml'、
'wml' => 'image/vnd.wap.wbmp'、'mid' => 'オーディオ/midi'、
'wav' => 'オーディオ/wav'、
'mp3' => 'audio/mpeg',
'mp2' => 'audio/mpeg',
'avi' => 'video/x-msvideo',
'mpeg' => 'video/mpeg',
'mpg' => 'video/mpeg',
'qt' => 'video/quicktime',
'mov' => 'video/quicktime',
'lha' => 'application/x-lha',
'lzh' => 'application/x-lha',
'z' => 'application/x-compress',
'gtar' => 'application/x-gtar',
'gz' => 'application/x-gzip',
'gzip' => 'application/x-gzip',
'tgz' => 'application/x-gzip',
'tar' => 'application/x-tar',
'bz2' => 'application/bzip2',
'zip' => 'application/zip',
'arj' => 'application/x-arj',
'rar' => 'application/x-rar-compressed',
'hqx' => 'application/mac-binhex40',
'sit' => 'application/x-stuffit',
'bin' => 'application/x-macbinary',
'uu' => 'text/x-uuencode',
'uue' => 'text/x-uuencode',
'latex'=> 'application/x-latex',
'ltx' => 'application/x-latex',
'tcl' => 'application/x-tcl',
'pgp' => 'application/pgp',
'asc' => 'application/pgp',
'exe' => 'application/x-msdownload',
'doc' => 'application/msword',
'rtf' => 'application/rtf',
'xls' => 'application/vnd.ms-excel',
'ppt' => 'application/vnd.ms-powerpoint',
'mdb' => 'application/x-msaccess',
'wri' => 'application/x-mswrite',
);
?>
php生成excel文档
复制代
header("Content-type:application/vnd.ms-excel"); header("Content-Disposition:filename=test.xls"); 「test1t」をエコー;
「test2tn」をエコー;「test1t」をエコー;
「test2tn」をエコー;
「test1t」をエコー;
「test2tn」をエコー;
「test1t」をエコー;
「test2tn」をエコー;
「test1t」をエコー;
「test2tn」をエコー;
「test1t」をエコー;
「test2tn」をエコー;
//改相应文件头就可出出.doc .xls等文件格式了
?>
时间比较问题
举一个简单例子说明:比如一个论坛对当天发表的贴子用new
方法一:
//$db->rows[$i][date]中はデータベース库中のdatetimeフィールドです。 $today=time(); $theDay=date("Y-m-d H:i:s",$today-24*3600);
$newTag=$db->rows[$i][date]>=$theDay?"":"";//方法二:
$newTag=$db->rows[$i][date]>=date("Y-m-d 00:00:00")?"?>
复制代
//引取页面と浏览器提交的变量、作用PHP.INI を使用する全局变量 に相当します。 @extract($_SERVER, EXTR_SKIP); @extract($_SESSION, EXTR_SKIP);
@extract($_POST, EXTR_SKIP);@extract($_FILES, EXTR_SKIP);
@extract($_GET, EXTR_SKIP);
@extract($_ENV, EXTR_SKIP);
?>
复制代码
//ファイルの読み取り関数
function readfromfile($file_name) {
if (file_exists($file_name)) {
$filenum=fopen($file_name , "r");
flock($filenum,LOCK_EX);
$filenum, filesize($file_name)); );
return $file_data;
}
?>
//ファイル書き込み関数 function writetofile($file_name,$data,$method="w") {
$filenum = fopen($file_name,$method);flock($filenum,$data);
fclose($filenum); file_data ;
}
?>
コードをコピーします
コードは次のとおりです:
/ /クイックページリダイレクト functionturntopage($url="index.php",$info = "ページリダイレクト...",$second=2){ print "< html>nn
n"; | |||
n"; print "
| n"; n"; |