PHP和MySQL開發的8個技巧

來源:互聯網
上載者:User

1. PHP 中數組的使用
在操作資料庫時,使用關聯陣列(associatively-indexed arrays)十分有協助,下面我們看一個基本的數字格式的數組遍曆:

  <?php

 $temp[0] = "richmond";

 $temp[1] = "tigers";

$temp[2] = "premiers";

 

 for($x=0;$x<count($temp);$x++)

 {

      echo $temp[$x];

     echo " ";

}

 ?>

 

然而另外一種更加節省代碼的方式是:

 <?php

     $temp = array("richmond", "tigers", "premiers");

      foreach ($temp as $element)

      echo "$element ";

 ?>

 

foreach 還能輸出文字下標:

 <?php

      $temp = array("club" => "richmond",

      "nickname" =>"tigers",

      "aim" => "premiers");

 

       foreach ($temp as $key => $value)

       echo "$key : $value ";

?>

 

PHP 手冊中描述了大約 50 個用於處理數組的函數。

2. 在 PHP 字串中加入變數

這個很簡單的:

<?php

     $temp = "hello"

     echo "$temp world";

?>

 

但是需要說明的是,儘管下面的例子沒有錯誤:

 <?php

      $temp = array("one" => 1, "two" => 2);

       // 輸出:: The first element is 1

      echo "The first element is $temp[one].";

?>

 

但是如果後面那個 echo 語句沒有雙引號引起來的話,就要報錯,因此建議使用花括弧:

<?php

      $temp = array("one" => 1, "two" => 2);

       echo "The first element is {$temp["one"]}.";

?>

 

3. 採用關聯陣列存取查詢結果
看下面的例子:

<?php

   $connection = mysql_connect("localhost", "albert", "shhh");

    mysql_select_db("winestore", $connection);

 

    $result = mysql_query("SELECT cust_id, surname,

  firstname FROM customer", $connection);

 

  while ($row = mysql_fetch_array($result))

 {

   echo "ID:\t{$row["cust_id"]}\n";

   echo "Surname\t{$row["surname"]}\n";

   echo "First name:\t{$row["firstname"]}\n\n";

 }

 ?>

 

函數 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-up dialog stating that the "Document Contains No Data"
A partial page when more is expected

出現這些情況的大多數原因並不在於指令碼的邏輯,而是 HTML 中存在的 bug 或者指令碼產生的 HTML 的 bug 。例如缺少類似 </table>, </form>, </frame> 之類的關閉 Tag,頁面就不能重新整理。解決這個問題的辦法就是,查看 HTML 的原始碼。

對於複雜的,不能查到原因的頁面,可以通過 W3C 的頁面校正程式 http://validator.w3.org/ 來分析。

如果沒有定義變數,或者變數定義錯誤也會讓程式變得古怪。例如下面的死迴圈:

<?php

        for($counter=0; $counter<10; $Counter++)

       myFunction();

 ?>

 

變數 $Counter 在增加,而 $counter 永遠小於 10。這類錯誤一般都能通過設定較高的錯誤報表層級來找到:

<?php

     error_reporting(E_ALL);

 

      for($counter=0; $counter<10; $Counter++)

     myFunction();

?>

 

5. 採用 header() 函數處理單組件查詢

在很多 Web 資料庫應用中,一些功能往往讓使用者點擊一個串連後,繼續停留在當前頁面,這樣的工作我叫它“單組件查詢”。

下面是一個叫做 calling.php 的指令碼:

  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd" >

 <html>

<head>

<title>Calling page example</title>

</head>

 <body>

<a href="action.php">Click here!</a>

</body>

</html>

 

當使用者點擊上面的串連時,就去調用 action.php。下面是 action.php 的源碼:

 <?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:

 <?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);

?>

 <!DOCTYPE HTML PUBLIC

  "-//W3C//DTD HTML 4.0 Transitional//EN"

 "http://www.w3.org/TR/html4/loose.dtd" >

  <html>

<head>

 <title>Customer insert</title>

</head>

 <body>

 I've inserted the customer for you.

</body>

</html>

  ?>

 

假設我們用下面的串連使用這個程式:

http://www.freelamp.com/addcust. ... &firstname=Fred

如果這個請求只提交一次,OK ,不會有問題,但是如果多次重新整理,你就會有多條記錄插入。
這個問題可以通過 header() 函數解決:下面是新版本的 addcust.php:

<?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);

     he

 

ader("Location: cust_receipt.php");
?>
這個指令碼把瀏覽器重新導向到一個新的頁面:cust_receipt.php:

  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd" >

  <html>

 <head>

<title>Customer insert</title>

  </head>

 <body>

 I've inserted the customer for you.

 </body>

  </html>

 

這樣,原來的頁面繼續重新整理也沒有副作用了。

7. 巧用鎖機制來提高應用效能

如果我們要緊急運行一個報表,那麼,我們可以對錶加寫鎖,防治別人讀寫,來提高對這個表的處理速度。

8. 用 mysql_unbuffered_query() 開發快速的指令碼

這個函數能用來替換 mysql_query() 函數,主要的區別就是 mysql_unbuffered_query() 執行完查詢後馬上返回,不需要等待或者對資料庫加鎖。

但是返回的行數不能用mysql_num_rows() 函數來檢查,因為輸出的結果集大小未知。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.