1,在函數中,傳遞陣列時
使用return 比使用global 更有效率
例如
function userloginfo($usertemp){
$detail=explode( "|",$usertemp);
return $detail;
}
$login=userloginfo($userdb);
比
function userloginfo($usertemp) {
global $detail;
$detail=explode("|",$usertemp);
}
userloginfo($userdb);
要高效
2,(這個程式碼用於得到程式目錄對應的網址,建議使用)
$urlarray=explode('/',$HTTP_SERVER_VARS['REQUEST_URI']);
$urlcount=count($urlarray);unset($urlarray[$urlcount-1]);
$ofstarurl='http://'.$HTTP_SERVER_VARS['HTTP_HOST'].implode('/',$ urlarray);
這段程式碼比
$pre_urlarray=explode('/',$HTTP_SERVER_VARS['HTTP_REFERER']);
$pre_url=array_popy_array_at; 🎜>
$a=2;$b=2;
比如
if($a==$b)$c=$a;
比
if($a===$b)$c=$a;
高效
limit查多記錄的前幾條, 速度很快, 但是查詢最面幾條就會慢
使用in .在查詢連續性記錄,非常快,非連續性記錄第一次運行會稍微慢一點,但是之後將比較快!
$online1=$online;
setcookie('online1',$online,$cookietime ,$ckpath,$ckdomain,$secure);
}
使用
set
setcookie ('online1',$online,$cookietime,$ckpath,$ckdomain,$secure);
COOKIE需要重新刷新一次才能生效
12,使用
$handle=fopen($filename,wb);
flock($handle,LOCK_SH);
$filedata=fread($handle,filesize($filename));
fclose( $handle);
比
file($filename);
無論在速度或穩定上都要優秀
13,截斷最佳化最佳化函數(可避免?字元出現)
function substrs($content,$length) {
if(strlen($content)>$length){
$num=0;
} $content.=' ...';
}
return $content;
}
15,不使用file();且不使用fget();(不不穩定或速度慢) 取一數組函數
{
$handle=@fopen($filename,$method);
@flockle=@fopen($filename,$method);
@flock ($handle,LOCK_SH);
@$filedata=fread($handle,filesize($filename));
@fclose($handle);
$filedata=str_replace("n","nhandle);
$filedata=str_replace("n","n
$filedb=explode("
//array_pop($filedb);
$count=count($filedb );
if($filedb[$count-1]==''){unset($filedb[$count-1]);}
return $filedb;
}
先寫到這
以上完全個人的一點小結,,不過正確性都經過反覆測試,如果有朋友質疑,請先測試,再討論,謝謝!