1

このパターンに従ってオブジェクトの数を印刷したい:

If there is 1 object, print 0
If there is 2 objects, print 0 1
If there is 3 objects, print 0 1 2

次のコードを試しました。

for($i = count($nodes) ; $i >= 0 ; $i--){
print $i;
}

しかし、結果は次のとおりです。

If there is 1 object, print 0 1
If there is 2 objects, print 0 1 2
if there is 3 objects, print 0 1 2 3

使えない。どうすればこれを達成できますか?

4

1 に答える 1

3

次のように使用する必要があります。

 $n = 3; // where n is no. of object
for($i=0; $i<$n; $i++){
    print $i." ";
    }
 //output 0 1 2
于 2012-10-06T04:05:03.737 に答える