ȸ¿ø°¡ÀԡžÆÀ̵ð/ºñ¹øã±â
ȨÀ¸·Î

PHP for ¹®
13³â Àü
for·çÇÁ´Â PHP¿¡¼­ Á¦ÀÏ º¹ÀâÇÑ ·çÇÁÀÌ´Ù. C¿Í ¶È°°Àº ¹æ½ÄÀ¸·Î µ¿ÀÛÇÑ´Ù. for·çÇÁÀÇ ¹®¹ýÀº ´ÙÀ½°ú °°´Ù:

for (expr1; expr2; expr3)
    statement

ù¹ø° Ç¥Çö½Ä(expr1)Àº ·çÇÁÀÇ ½ÃÀÛ¿¡¼­ ¹Ù·Î Á¶°Ç¾øÀÌ Æò°¡µÈ´Ù (¼öÇàµÈ´Ù).

°¢ ¹Ýº¹(iteration)ÀÇ ½ÃÀۺκп¡¼­ expr2ÀÌ Æò °¡µÈ´Ù. ÀÌ Ç¥Çö½ÄÀÌ TRUEÀÌ¸é ·çÇÁ´Â °è¼ÓµÇ°í ³»Æ÷µÈ ±¸¹®(µé)ÀÌ ¼öÇàµÈ´Ù. FALSEÀ̸é, ·çÇÁ ¼öÇàÀ» ¸ØÃá´Ù.

expr3Ç¥Çö½ÄÀº °¢ ¹Ýº¹ÀÇ ³¡ºÎºÐ¿¡¼­ Æò°¡µÈ´Ù (¼öÇàµÈ´Ù).

°¢ Ç¥ÇöÀº ºñ¾îÀְųª ÄÞ¸¶·Î ±¸ºÐÇÑ ¿©·¯ Ç¥ÇöÀ» °¡Áú ¼ö ÀÖ½À´Ï´Ù. expr2¿¡¼­, ÄÞ¸¶·Î ±¸ºÐÇÑ Ç¥ÇöÀº ¸ðµÎ Æò°¡µÇÁö¸¸ °á°ú´Â ¸¶Áö¸· ºÎºÐ¿¡¼­¸¸ °¡Á®¿É´Ï´Ù. expr2ÀÌ ºñ¾îÀÖ´Ù´Â °ÍÀº ·çÇÁ°¡ ¹«Á¦ÇÑ ¼öÇàµÇ¾î¾ß ÇÑ´Ù´Â °ÍÀ» ÀǹÌÇÑ´Ù (PHP´Â Có·³ TRUE·Î ÀνÄ) ÀÌ·± ±â¹ýÀº »ý°¢Ã³·³ ÇÊ¿ä¾øÁö´Â ¾Ê´Ù. ¿Ö³Ä Çϸé Á¾Á¾ for¹®ÀÇ Ç¥Çö½Ä ´ë½Å¿¡ break¹®À¸·Î ·çÇÁ¸¦ ³¡³¾ ÇÊ¿ä°¡ Àֱ⠶§¹®ÀÌ´Ù.

´ÙÀ½ ¿¹Á¦ ÄÚµåµéÀ» º¸¼¼¿ä. ÀÌ ÄÚµå ¸ðµÎ 1ºÎÅÍ 10±îÁöÀÇ ¼ýÀÚ¸¦ Ãâ·ÂÇÑ´Ù:

<?php
/* ¿¹Á¦ 1 */

for ($i = 1; $i <= 10; $i++) {
    echo $i;
}

/* ¿¹Á¦ 2 */

for ($i = 1; ; $i++) {
    if ($i > 10) {
        break;
    }
    echo $i;
}

/* ¿¹Á¦ 3 */

$i = 1;
for (; ; ) {
    if ($i > 10) {
        break;
    }
    echo $i;
    $i++;
}

/* ¿¹Á¦ 4 */

for ($i = 1, $j = 0; $i <= 10; $j += 1, print $i, $i++);
?>

¹°·Ð, ù¹ø° ¿¹Á¦(ȤÀº ³×¹ø°) Äڵ尡 °¡Àå ÁÁÀº ¹æ¹ýÀÌ´Ù. ±×·¯³ª for·çÇÁ¿¡¼­ ºó Ç¥Çö½ÄÀ» »ç¿ëÇØ¾ß ÇÏ´Â °æ¿ìµµ ºÎµúÈ÷°Ô µÉ°ÍÀÌ´Ù.

PHP´Â for·çÇÁ¿¡ ´ëÇÑ ´ëü "Äݸ¥ ¹®¹ý"À» Áö¿øÇÑ´Ù.

for (expr1; expr2; expr3):
    statement
    ...
endfor;

¸¹Àº »ç¿ëÀÚ°¡ ¾Æ·¡ ¿¹Á¦Ã³·³ ¹è¿­À» Ž»öÇÕ´Ï´Ù.


<?php
/*
* ÀÌ ¹è¿­Àº ·çÇÁ¸¦ µµ´Â µ¿¾È
* º¯°æÇÒ µ¥ÀÌÅ͸¦ °¡Áö°í ÀÖ½À´Ï´Ù.
*/
$people = Array(
        Array('name' => 'Kalle', 'salt' => 856412),
        Array('name' => 'Pierre', 'salt' => 215863),
        );

for($i = 0; $i < sizeof($people); ++$i)
{
    $people[$i]['salt'] = rand(000000, 999999);
}
?>

¹®Á¦´Â µÎ¹ø° Ç¥Çö½ÄÀÔ´Ï´Ù. ÀÌ ÄÚµå´Â ¸Å ½ÇÇึ´Ù ¹è¿­ÀÇ Å©±â¸¦ °è»êÇϱ⠶§¹®¿¡ ´À·ÁÁý´Ï´Ù. Å©±â´Â º¯ÇÏÁö ¾Ê±â ¶§¹®¿¡, Å©±â¸¦ ÀúÀåÇÏ´Â Áß°£ º¯¼ö¸¦ »ç¿ëÇÏ¿© ·çÇÁ¸¦ µ¹¸®µµ·Ï ÃÖÀûÈ­ ÇÒ ¼ö ÀÖ½À´Ï´Ù. ¾Æ·¡ ¿¹Á¦°¡ º¸¿©ÁÝ´Ï´Ù:


<?php
$people = Array(
        Array('name' => 'Kalle', 'salt' => 856412),
        Array('name' => 'Pierre', 'salt' => 215863),
        );

for($i = 0, $size = sizeof($people); $i < $size; ++$i)
{
    $people[$i]['salt'] = rand(000000, 999999);
}
?>



foreach do-while
--------------------------------------------------------------------------------
Last updated: Fri, 24 Jul 2009
  
  add a note User Contributed Notes
for
kanirockz at gmail dot com
21-Mar-2010 07:49
Here is another simple example for " for loops"

<?php

$text="Welcome to PHP";
$searchchar="e";
$count="0"; //zero

for($i="0"; $i<strlen($text); $i=$i+1){
    
    if(substr($text,$i,1)==$searchchar){
    
       $count=$count+1;
    }

}

echo $count

?>

this will be count how many "e" characters in that text (Welcome to PHP)
kanirockz at gmail dot com
21-Mar-2010 07:48
Here is another simple example for " for loops"

<?php

$text="Welcome to PHP";
$searchchar="e";
$count="0"; //zero

for($i="0"; $i<strlen($text); $i=$i+1){
    
    if(substr($text,$i,1)==$searchchar){
    
       $count=$count+1;
    }

}

echo $count

?>

this will be count how many "e" characters in that text (Welcome to PHP)
Steven
11-Jan-2009 06:50
Alternating form rows:

<?php

$rows = 4;

echo '<table><tr>';

for($i = 0; $i < 10; $i++){
    echo '<td>' . $i . '</td>';
    if(($i + 1) % $rows == 0){
        echo '</tr><tr>';
    }
}

echo '</tr></table>';

?>

Changing $rows will change how many columns are in a row.
dkimbel13 at gmail dot com
07-Jan-2009 11:41
Just a note on looping through an array using the for() loop.

with the array...
<?php $array = array("value1","value2","value3"); ?>

then...
<?php
for(reset($array),current($array),next($array){
    echo("Element ".key($array)." contains ".current($array)."<br/>";
}
?>

is the equivalent of...
<?php
for($i=0;$i<count($array);$i++){
    echo("Element $i contains $array[$i]<br/>");
}
?>

I don't know if there is any advantage, just thought I would mention it.
http://badluck.tv
24-Mar-2008 01:05
Nested For Loop with the same iterator as the parent.
(Well formatted so the resulting code is clean when executed).
Useful for outputting a data array into a table, ie. images.

<?php
//Dummy data
$data = array(73,74,75,76,78,79,80,81,82,83,84,85,86,87);

//Our 'stepping' variable
$g = 0;

//Our rowcount
$rowcount = 0;

echo "<table cellspacing='0'>\r";
    for ($i=0; $i<count($data); ) {

        $rowcount++;
        echo "    <tr>\r"; //New row

        $g = $i + 3; //Set our nested limit
        for( ; $i<$g; $i++) { //nested for loop

            if (!isset($data[$i])) { //Allow us to break on incomplete rows
                break;
            }

            echo "        <td style='border: 1px #000 solid;'>\r"; //Out put a cell
            echo "            <p>Row $rowcount <br/> Cell: $i <br/> Data: $data[$i]</p>\r";
            echo "        </td>\r";
        }

        echo "    </tr> \r"; //End New Row
    }

echo "</table>\r";?>
eduardofleury at uol dot com dot br
14-Jun-2007 01:18
<?php
//this is a different way to use the 'for'
//Essa é uma maneira diferente de usar o 'for'
for($i = $x = $z = 1; $i <= 10;$i++,$x+=2,$z=&$p){
    
    $p = $i + $x;
    
    print "\$i = $i , \$x = $x , \$z = $z <br />";
    
}

?>
lishevita at yahoo dot co (notcom) .uk
08-Sep-2006 07:33
On the combination problem again...

It seems to me like it would make more sense to go through systematically. That would take nested for loops, where each number was put through all of it's potentials sequentially.

The following would give you all of the potential combinations of a four-digit decimal combination, printed in a comma delimited format:

<?php
for($a=0;$a<10;$a++){
    for($b=0;$b<10;$b++){
          for($c=0;$c<10;$c++){
              for($d=0;$d<10;$d++){
                echo $a.$b.$c.$d.", ";
              }
           }
      }
}
?>

Of course, if you know that the numbers you had used were in a smaller subset, you could just plunk your possible numbers into arrays $a, $b, $c, and $d and then do nested foreach loops as above.

- Elizabeth
JustinB at harvest dot org
04-Aug-2005 11:23
For those who are having issues with needing to evaluate multiple items in expression two, please note that it cannot be chained like expressions one and three can.  Although many have stated this fact, most have not stated that there is still a way to do this:

<?php
for($i = 0, $x = $nums['x_val'], $n = 15; ($i < 23 && $number != 24); $i++, $x + 5;) {
    // Do Something with All Those Fun Numbers
}
?>
user at host dot com
19-Apr-2004 10:53
Also acceptable:

<?php
  for($letter = ord('a'); $letter <= ord('z'); $letter++)
   print chr($letter);
?>
bishop
17-Jul-2003 08:23
If you're already using the fastest algorithms you can find (on the order of O(1), O(n), or O(n log n)), and you're still worried about loop speed, unroll your loops using e.g., Duff's Device:

<?php
$n = $ITERATIONS % 8;
while ($n--) $val++;
$n = (int)($ITERATIONS / 8);
while ($n--) {
    $val++;
    $val++;
    $val++;
    $val++;
    $val++;
    $val++;
    $val++;
    $val++;
}
?>

(This is a modified form of Duff's original device, because PHP doesn't understand the original's egregious syntax.)

That's algorithmically equivalent to the common form:

<?php
for ($i = 0; $i < $ITERATIONS; $i++) {
    $val++;
}
?>

$val++ can be whatever operation you need to perform ITERATIONS number of times.

On my box, with no users, average run time across 100 samples with ITERATIONS = 10000000 (10 million) is:
Duff version:       7.9857 s
Obvious version: 27.608 s
nzamani at cyberworldz dot de
18-Jun-2001 06:47
The point about the speed in loops is, that the middle and the last expression are executed EVERY time it loops.
So you should try to take everything that doesn't change out of the loop.
Often you use a function to check the maximum of times it should loop. Like here:

<?php
for ($i = 0; $i <= somewhat_calcMax(); $i++) {
  somewhat_doSomethingWith($i);
}
?>

Faster would be:

<?php
$maxI = somewhat_calcMax();
for ($i = 0; $i <= $maxI; $i++) {
  somewhat_doSomethingWith($i);
}
?>

And here a little trick:

<?php
$maxI = somewhat_calcMax();
for ($i = 0; $i <= $maxI; somewhat_doSomethingWith($i++)) ;
?>

The $i gets changed after the copy for the function (post-increment).
ÃßõÃßõ : 315 Ãßõ ¸ñ·Ï
¹øÈ£ Á¦¸ñ
2,885
input ÀÔ·Â ÇÊµå ¾ÕµÚ °ø¹é ½Ç½Ã°£ Á¦°Å
2,884
Placeholder Æ÷Ä¿½º½Ã °¨Ãß±â
2,883
MySQL Áߺ¹µÈ µ¥ÀÌÅ͸¦ »èÁ¦
2,882
MySQL Áߺ¹ µ¥ÀÌÅÍ È®ÀÎ
2,881
sessionStorage.getItem ¿Í sessionStorage.setItem
2,880
Á¦ÀÌÄõ¸® ·£´ýÀ¸·Î ¹è°æ»ö º¯°æ
2,879
preg match¿¡ °üÇÑ Á¤±Ô½Ä
2,878
Stream an audio file with MediaPlayer ¿Àµð¿À ÆÄÀÏ ½ºÆ®¸®¹Ö Çϱâ
2,877
Audio Streaming PHP Code
2,876
PHP $ SERVER ȯ°æ º¯¼ö Á¤¸®
2,875
Vimeo (ºñ¸Þ¿À) API ¸¦ »ç¿ëÇÏ¿© Ç÷¹À̾î ÄÁÆ®·ÑÇϱâ
2,874
iframe »ç¿ë½Ã ÇÏ´Ü¿¡ ¹ß»ýÇÏ´Â °ø¹é Á¦°Å¹æ¹ý
2,873
¾ÆÀÌÇÁ·¹ÀÓ(iframe) Àüüȭ¸é °¡´ÉÇÏ°Ô Çϱâ
2,872
ºÎÆ®½ºÆ®·¦(bootstrapk)¿¡¼­ »ç¿ëÇÏ´Â class¸í Á¤¸®
2,871
ºÎÆ®½ºÆ®·¦ CSS
2,870
Å©·Ò¿¡¼­ ¸¶Áø Á¶Àý
2,869
PHP ÇöÀç ÆäÀÌÁöÀÇ µµ¸ÞÀθíÀ̳ª urlµîÀÇ Á¤º¸ ¾Ë¾Æ¿À±â
2,868
PHP preg match all()
2,867
PHP ·Î À¥ÆäÀÌÁö ±Ü¾î¿À±â ¸ðµç ¹æ¹ý ÃÑÁ¤¸®!
2,866
[PHP] ¿ø°ÝÁö ÆÄÀÏ ÁÖ¼Ò ³ëÃâ ¾ÈÇÏ°í curl·Î ´Ù¿î·Îµå ¹Þ±â
2,865
PHP ÇÔ¼ö Á¤¸®
2,864
¾ÆÀÌÇÁ·¹ÀÓ(iframe) ºñÀ² À¯ÁöÇϸ鼭 Å©±â Á¶ÀýÇÏ´Â ¹æ¹ý
2,863
PHP ¹è¿­¿¡¼­ ¹«ÀÛÀ§·Î Çϳª »Ì¾ÆÁÖ´Â array rand() ÇÔ¼ö
2,862
PHP Á¤±Ô½Ä Á¤¸®
2,861
PHP Á¤±Ô½ÄÀ» È°¿ëÇÑ ÅÂ±× ¹× ƯÁ¤ ¹®ÀÚ¿­ Á¦°Å ¹× ÃßÃâ ¹æ¹ý
2,860
php Å©·Ñ¸µ ¶Ç´Â ÆÄ½Ì ÇÔ¼ö, Á¤±Ô½Ä ¸ðÀ½
2,859
Á¦ÀÌÄõ¸® ±âº» ¸í·É¾î
2,858
À¥ÆäÀÌÁö °¡·Î ¸ðµå¼¼·Î ¸ðµå ÀνÄÇϱâ
2,857
¸ð¹ÙÀÏ À¥ È­¸é °­Á¦ ȸÀü(°¡·Î¸ðµå °íÁ¤)
2,856
[HTML5]¿¡¼­ frameset ´ëü ¹æ¹ý°ú iframe ¼Ó¼º
¸ñ·Ï
¹ÂÁ÷Æ®·ÎÆ® ºÎ»ê±¤¿ª½Ã ºÎ»êÁø±¸ °¡¾ßµ¿ ¤Ó °³ÀÎÁ¤º¸Ãë±Þ¹æħ
Copyright ¨Ï musictrot All rights reserved.