來源:www.freelamp.com
LAMP 架構的網站,我以前註重的多是安裝/配置方面的,講述開發的相對較少,因為自己從事開發也少。本文的原文當然也來自:
Published on The O'Reilly Network (http://www.oreillynet.com/)
http://www.oreillynet.com/pub/a/onlamp /2002/04/04/webdb.html
看了以後,頗有啟發,以前開發中遇到的一些問題,迎刃而解。所以翻譯出來跟大家分享。
1. PHP 中數組的使用
在操作資料庫時,使用關聯數組(associatively-indexed arrays)十分有幫助,下面我們看一個基本的數字格式的數組遍歷:
$temp[0] = "richmond";
$temp[1] = "tigers";
$temp[2] = "premiers";
for($x=0;$x
echo $temp[$x];
echo " ";
}
?>
然而另外一種更節省程式碼的方式是:
$temp = array("richmond", "tigers", "premiers");
foreach ($temp as $element)
echo "$element ";
?>
foreach 還能輸出文字下標:
$temp = array("club" => "richmond",
"nickname" =>"tigers",
"aim" => "premiers");
foreach ($temp as $key => $value)
echo "$key : $value ";
?>
PHP 手冊中描述了大約50 個用於處理陣列的函數。
2. 在PHP 字串中加入變數
這個很簡單的:
$temp = "hello"
echo "$ temp world";
?>
但需要說明的是,儘管下面的例子沒有錯誤:
$temp = array("one" => 1, " two" => 2);
// 輸出:: The first element is 1
echo "The first element is $temp[one].";
?>
但是如果後面那個echo 語句沒有雙引號引起來的話,就要報錯,因此建議使用花括號:
$temp = array("one" => 1, "two" => 2);
echo "The first element is {$temp["one"]}.";
?>
3. 採用關聯數組存取查詢結果
看下面的例子:
$connection = mysql_connect("localhost", "albert", "s");
mysql_select_db("winestore", $connection);
mysql_select_db("winestore", $connection);
$result = mysql_query("SELECT cust_id, surname,
firstname FROM customer", $connection);
while ($row = mysql_fetch_array($result_array($result)
while ($row = mysql_fetch_array($result_array($result)
echo "ID:t{$row["cust_id"]}n";
echo "Surnamet{$row["surname"]}n";
echo "First name:t{$row[" firstname"]}nn";
}
?>
函數mysql_fetch_array() 把查詢結果的一行放入數組,可以同時用兩種方式引用,例如cust_id 可以同時用下面兩種方式:$row["cust_id"] 或$row[0] 。顯然,前者的可讀性比後者好多了。
在多表連查中,如果兩個欄位名字一樣,最好用別名分開:
SELECT winery.name AS wname,
region.name AS rname,
FROM winery, region
WHERE winery.region_id = region.region_id;
列名的引用為:$row["wname"] 和$row["rname"]。
在指定表名和列名的情況下,只引用列名:
SELECT winery.region_id
FROM winery
列名的引用為: $row["region_id"]。
聚集函數的參考是參考名稱:
SELECT count(*)
FROM customer;
列名的參考為: $row["count(* )"]。
4. 注意常見的PHP bug
常見的PHP 糾錯問題是:
No page rendered by the Web browser when much more is expected
A pop the Web browser when much more is expected
A pop the Web browser when much more is expected
A pop the Web browser when much more is expected
A pop the Web browser when much more is expected
A pop the Web browser when much more is expected
A pop the Web browser when much more is expected
A pop the Web browser when much more is expected
A pop the Web 手> -up dialog stating that the "Document Contains No Data"
A partial page when more is expected
出現這些情況的大多數原因並不在於腳本的邏輯,而是HTML 中存在的bug 或者腳本產生的HTML 的bug 。例如缺少類似 , , 之類的關閉 Tag,頁面就不能刷新。解決這個問題的方法就是,查看 HTML 的原始碼。
對於複雜的,不能查到原因的頁面,可以透過 W3C 的頁面校驗程式 http://validator.w3.org/ 來分析。
如果沒有定義變量,或是變數定義錯誤也會讓程式變得古怪。例如下面的死迴圈:
for($counter=0; $countermyFunction();
?>
變數$Counter 在增加,而$counter 永遠小於10。這類錯誤一般都能透過設定較高的錯誤報告等級來找到:
error_reporting(E_ALL); for($counter=0; $countermyFunction(); ?> 5. 採用header() 函數處理單部件查詢在許多Web 資料庫應用中,某些功能往往讓使用者點擊一個連線後,繼續停留在目前頁面,這樣的工作我叫它「單部件查詢」。
以下是一個叫做calling.php 的腳本:
BR>"-//W3C//DTD HTML 4.0 Transitional//EN"
"http ://www.w3.org/TR/html4/loose.dtd" >
Click here!
當使用者點擊上面的連線時,就去呼叫action.php。以下是action.php 的原始碼:
// 資料庫功能
// 重定向
header("Location: $HTTP_REFERER");
exit;
?>
這裡有兩個常見的錯誤需要提醒一下:
呼叫header() 函數後要包含一個exit 語句讓腳本停止,否則後續的腳本可能會在頭發送前輸出。
header() 函數常見的一個錯誤是:
Warning: Cannot add header information - headers already sent...
header() 函數只能在HTML 輸出之前被調用,因此你需要檢查php 前面可能存在的空白行,空格等等。
6. reload 的問題及其解決
我以前在寫 PHP 程式時,經常碰到頁面刷新時,資料庫多處理一次的情況。
我們來看addcust.php:
$query = "INSERT INTO customer
SET surname = $surname,
firstname = $firstname";
; $connection = mysql_connect("localhost", "fred", "shhh");
mysql_select_db("winestore", $connection);
$result = mysql_query($query, $connection);
$result = mysql_query($query, $connection);
? >
BR>"-//W3C//DTD HTML 4.0 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd" >
I've inserted the customer for you.
?>
假設我們用下面的連接使用這個程式:
http://www.freelamp.com/addcust.php ?surname=Smith&firstname=Fred
如果這個請求只提交一次,OK ,不會有問題,但是如果多次刷新,你就會有多筆記錄插入。
這個問題可以透過header() 函數來解決:下面是新版本的addcust.php:
$query = "INSERT INTO customer
SET surname = $surname,surname = $surname,
firstname = $firstname";
$connection = mysql_connect("localhost", "fred", "shhh");
mysql_select_db("winestore",sqlconnection); ($query, $connection);
header("Location: cust_receipt.php");
?>
這個腳本把瀏覽器重定向到一個新的頁面:cust_receipt.php:
BR>"-//W3C//DTD HTML 4.0 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd" >
I've inserted the customer for you.
這樣,原來的頁面繼續刷新也沒有副作用了。
7. 巧用鎖機制來提高應用效能
如果我們要緊急運行一個報表,那麼,我們可以對錶加寫鎖,防治別人讀寫,來提高對這個表的處理速度。
8. 用mysql_unbuffered_query() 開發快速的腳本
這個函數能用來取代mysql_query() 函數,主要的差別就是mysql_unbuffered_query() 執行完查詢後馬上回傳,不需要等待或對資料庫加鎖。
但是傳回的行數不能用mysql_num_rows() 函數來檢查,因為輸出的結果集大小不詳。