1. PHP 中數組的使用
在操作資料庫時,使用關聯數組(associatively-indexed arrays)十分有幫助,下面我們看一個基本的數字格式的數組遍歷:
$temp[0] = "richmond";
$temp[1] = "tigers";
$temp[2] = "premiers";
for($x=0;$x
echo $temp[$x];
echo " ";
}
?>
然而另一種更節省程式碼的方式是:
$temp = array(""" , "premiers");
foreach ($temp as $element)
echo "$element ";
?>
foreach 還能輸出文字下標:
foreach 也能輸出文字下標:
foreach 也能輸出文字下標:
"$ > "richmond",
"nickname" =>"tigers",
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", "shhh");
mysql_select_db("winestore", $connection); firstname FROM customer", $connection);
while ($row = mysql_fetch_array($result))
{echo "ID:t{$row["cust_id"]}n";
echo "ID:t{$row["cust_id"]}n";echo "ID:t{$row["cust_id"]}n";
echo; "surname"]}n";
echo "First name:t{$row["firstname"]}nn";
}
函數mysql_fetch_array() 把查詢結果的一行放入數組,可以同時用一行放入數組,可以同時用一行兩種方式引用,例如cust_id 可以同時用以下兩種方式:$row["cust_id"] 或$row[0] 。顯然,前者的可讀性比後者好多了。
在多表連查中,如果兩個欄位名字一樣,最好用別名分開:
region.name AS rname,
FROM winery, region
列名的引用為:$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-up dialog stating Conthat the DataDocument that the DataDocumentA. partial page when more is expected🎜🎜出現這些情況的大多數原因並不在於腳本的邏輯,而是HTML 中存在的bug 或腳本產生的HTML 的bug 。例如缺少類似 , , 之類的關閉 Tag,頁面就不能刷新。解決這個問題的方法就是,查看 HTML 的原始碼。 🎜🎜以上就是PHP和MySQL開發的技巧希望可以帶給大家幫助,想要獲得更多的內容可以關注PHP中文網(www.php.cn)! 🎜