本帖最後由 guo.cane 於 2013-10-31 21:22 編輯
網址加密- <?php
- echo urlencode('計算'); //網址編碼
- ?>
複製代碼 For迴圈的應用- <?php
- header('Content-Type:text/html; charset=utf-8');
- ?>
- <html>
- <head>
- <title>For 迴圈的應用</title>
- <meta http-equiv="Content-Type" Content="text/html; charset=utf-8" />
- </head>
- <body>
- <?php
- //Example 1
- //for($i=1;$i<=50; $i=$i+1){ //(起始值; 結束值; 條件值)
- //for($i=1;$i<=10; $i++){ //(起始值; 結束值; 條件值)
- /*for($i=1;$i<=10; $i++){ //(起始值; 結束值; 條件值)
- echo $i.' Steve<br />';
- }*/
-
- //Example 2
- /*for($i=1;$i<=10; $i++){ //(起始值; 結束值; 條件值)
- echo $i.' Steve<br />';
- if($i==5){ //跑到5之後中止
- break;
- }
- }*/
-
- //Example 3
- /*for($i=1;$i<=10; $i++){ //(起始值; 結束值; 條件值)
- if($i==4 || $i==7){ //該次不執行
- continue;
- }
- echo $i.' Steve<br />';
-
- }*/
-
- //Example 4
-
- for($i=1; $i<10; $i++){
- echo '2 * '.$i.'='.(2*$i).'<br />';
- }
-
-
- ?>
- </body>
- </html>
複製代碼 While 迴圈的應用- <?php
- header('Content-Type:text/html; charset=utf-8');
- ?>
- <html>
- <head>
- <title>While 迴圈的應用</title>
- <meta http-equiv="Content-Type" Content="text/html; charset=utf-8" />
- </head>
- <body>
- <?php
- //Example 1
- /*$i = 1;
- while($i<=10){ //前測式迴圈
- echo '我叫 Steve<br />';
- //$i++;
- }*/
- //echo $i;
-
- //Example 2
- $i = 11;
- do{ //後測式迴圈
- echo '我叫 Steve<br />';
- }while($i<=10);
-
-
- ?>
- </body>
- </html>
複製代碼 單引號與雙引號的差別- <?php
- header('Content-Type:text/html; charset=utf-8');
- ?>
- <html>
- <head>
- <title>單引號與雙引號的差別</title>
- <meta http-equiv="Content-Type" Content="text/html; charset=utf-8" />
- </head>
- <body>
- <?php
- $s = '單引號與雙引號的差別';
-
- echo '$s'; //單引號不會解析變數(效率較好)
- echo "$s"; //雙引號會解析變數(效率較差)
-
- ?>
- </body>
- </html>
複製代碼 |