PHP快速入門教程:WHILE迴圈示例
<html>
<head>
<title>WHILE迴圈示例</title>
<meta http-equiv=content-type content=”text/html; charset=gb2312″>
</head>
<body>
<h2 align=center >WHILE迴圈示例</h2>
<hr color=red>
<!–PHP程式的開始–>
<?
echo”<table align=center width=80% border=1>/n”;
/******************************
用while迴圈來讀取$GLOBALS陣列的值
在迴圈體中顯示出客戶端的資訊
使用了list函式
*******************************/
while (list($key, $value) = each($GLOBALS))
//注意if結構和strlen函式的使用
{ if (strlen($value)<=50)
{
echo “<tr><td>$key</td>”;
echo “<td>$value</td></tr>/n”;
}
}
echo “</table>/n”;
?>
<!–PHP程式的結束–>
</body>
</html>
<head>
<title>WHILE迴圈示例</title>
<meta http-equiv=content-type content=”text/html; charset=gb2312″>
</head>
<body>
<h2 align=center >WHILE迴圈示例</h2>
<hr color=red>
<!–PHP程式的開始–>
<?
echo”<table align=center width=80% border=1>/n”;
/******************************
用while迴圈來讀取$GLOBALS陣列的值
在迴圈體中顯示出客戶端的資訊
使用了list函式
*******************************/
while (list($key, $value) = each($GLOBALS))
//注意if結構和strlen函式的使用
{ if (strlen($value)<=50)
{
echo “<tr><td>$key</td>”;
echo “<td>$value</td></tr>/n”;
}
}
echo “</table>/n”;
?>
<!–PHP程式的結束–>
</body>
</html>
相關文章
- PHP For & While 迴圈PHPWhile
- c#入門-while迴圈C#While
- Python中for迴圈和while迴圈有什麼區別?Python入門教程PythonWhile
- while迴圈以及do while迴圈While
- Java入門學習-學習if & else,for迴圈,foreach迴圈,while迴圈的用法。JavaWhile
- Python趣味入門5:迴圈語句whilePythonWhile
- 【廖雪峰python入門筆記】while迴圈Python筆記While
- C#快速入門教程(14)—— 迴圈語句結構C#
- C語言——迴圈結構(for迴圈,while迴圈,do-while迴圈)C語言While
- while迴圈While
- web前端開發教程-while迴圈Web前端While
- Java 迴圈 - for, while 及 do…whileJavaWhile
- 04流程控制 for迴圈,while迴圈While
- python while迴圈PythonWhile
- linux while 迴圈LinuxWhile
- while迴圈補充While
- 五、使用者輸入和while迴圈While
- Java迴圈結構-for,while及do…whileJavaWhile
- Java while和do while迴圈詳解JavaWhile
- javascript快速入門3--分支判斷與迴圈JavaScript
- JavaScript中的while迴圈JavaScriptWhile
- python-while迴圈PythonWhile
- C語言程式設計學習中while迴圈和do……while迴圈C語言程式設計While
- Java 迴圈結構 - for, while 及 do...whileJavaWhile
- PHP快速入門PHP
- hibernate快速入門示例
- java學習之while迴圈JavaWhile
- mysql 中 while 迴圈的用法。MySqlWhile
- C#程式設計基礎第七課:C#中的基本迴圈語句:while迴圈、do-while迴圈、for迴圈、foreach迴圈的使用C#程式設計While
- Object-C,迴圈語句for,while,do-whileObjectWhile
- Go語言入門教程系列——函式、迴圈與分支Go函式
- fold 命令入門示例教程
- GraphQL 快速入門【5】GraphQL 示例
- python04: while迴圈語句 break continue for in 迴圈PythonWhile
- python 基礎習題6--for迴圈和while迴圈PythonWhile
- while迴圈和do迴圈、緩衝區、一維陣列While陣列
- C#練習,應用for,while,do-while迴圈C#While
- 15-python之while迴圈PythonWhile