?? inc_install.php
字號:
<?php
//--------------------------------
//獲得GD的版本
//--------------------------------
function gdversion()
{
static $gd_version_number = null;
if ($gd_version_number === null)
{
ob_start();
phpinfo(8);
$module_info = ob_get_contents();
ob_end_clean();
if(preg_match("/\bgd\s+version\b[^\d\n\r]+?([\d\.]+)/i", $module_info,$matches))
{ $gdversion_h = $matches[1]; }
else
{ $gdversion_h = 0; }
}
return $gdversion_h;
}
//----------------------
//返回一個嚴(yán)重錯誤的警告,并退回上一頁
//---------------------
function GetBackAlert($msg,$isstop=0)
{
$msg = str_replace('"','`',$msg);
if($isstop==1) $msg = "<script>\r\n<!--\r\n alert(\"{$msg}\");\r\n-->\r\n</script>\r\n";
else $msg = "<script>\r\n<!--\r\n alert(\"{$msg}\");history.go(-1);\r\n-->\r\n</script>\r\n";
$msg = "<meta http-equiv=content-type content='text/html; charset=gb2312'>\r\n".$msg;
return $msg;
}
//測試某目錄的寫入權(quán)限
function TestWrite($d){
$tfile = '_test.txt';
$fp = @fopen($d.'/'.$tfile,'w');
if(!$fp) return false;
else{
fclose($fp);
$rs = @unlink($d.'/'.$tfile);
if($rs) return true;
else return false;
}
}
?>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -