熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> PHP編程 >> 正文

PHP快速入門教程之for循環

2022-06-13   來源: PHP編程 

<html>

<head>

<title>for循環示例</title>
<meta httpequiv=contenttype content=text/html; charset=gb

</head>

<body>

<h align=center >客戶端的信息-FOR循環</h

<hr color=red>

<!PHP程序的開始

<?

echo<table border=>\n;//顯示表格的邊框

/******************************
用for循環來讀取$GLOBALS數組的值
在循環體中顯示出客戶端的信息
*******************************/

for ($key=reset($GLOBALS);$key=key($GLOBALS);$key=next($GLOBALS))
{
$value=pos($GLOBALS);
echo <tr><td>$key</td><td>$value</td></tr>\n;
}

echo </table>\n;

?>

<!PHP程序的結束

</body>

</html>


From:http://tw.wingwit.com/Article/program/PHP/201311/21450.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.