|
|
<HTML><BODY>
<?
// ******************************************************************
// 書き方1
// ******************************************************************
$i = 0;
while ( $i < 10 ) {
echo "$i<br>\n";
i++;
}
?>
</BODY></HTML>
| |
|
「: と endxxxx 」
|
<HTML><BODY>
<?
// ******************************************************************
// 書き方2
// ******************************************************************
$i = 0;
while ( $i < 10 ):
echo "$i<br>\n";
i++;
endwhile;
?>
</BODY></HTML>
| |
|
「 do while 」
|
<HTML><BODY>
<?
// ******************************************************************
// 書き方3
// ******************************************************************
$i = 0;
do {
echo "$i<br>\n";
i++;
} while ( $i < 10 );
?>
</BODY></HTML>
| |
|
|
|
|
<HTML><BODY>
<?
// ******************************************************************
//
// ******************************************************************
for ( $i = 0; $i < 10; $i++ ) {
echo "$i<br>\n";
}
?>
</BODY></HTML>
| |
|
|
全ての配列要素が有効な時の配列の上限を用いたループ |
|
|
<HTML><BODY>
<?
// ******************************************************************
//
// ******************************************************************
$ArrayData = array( 1,2,3,4,5,6,7,8,9,10 );
for ( $i = 0; $i < count($ArrayData); $i++ ) {
echo "\$ArrayData ---> $ArrayData<br>\n";
}
?>
</BODY></HTML>
| |
|
|
|
|
<HTML><BODY>
<?
// ******************************************************************
//
// ******************************************************************
$ArrayData = array( 1,2,3,4,5,6,7,8,9,10 );
foreach ( $ArrayData as $DspData ) {
echo "$DspData<br>\n";
}
?>
</BODY></HTML>
| |
|
|
<HTML><BODY>
<?
// ******************************************************************
//
// ******************************************************************
$ArrayData = array( 1,2,3,4,5,6,7,8,9,10 );
foreach ( $ArrayData as $idx => $DspData ) {
echo '添字 = ' . $idx . ' : 要素 = ' . "$DspData<br>\n";
}
?>
</BODY></HTML>
| |
|
|
|