Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I want to learn to use for loop to populate brackets such as the following:- $max starts at 8 and can be maximum of 512. I only know very basics of forloop, not too well to form the below brackets.. can someone help me on this and explain how they done it. Each goes into simple pattern/sequence.

I appreciate it very much.

$max = 8;

if($max == 8)

[[0, 0], [0, 0]],   
[[0, 0], [0, 0]], 
[[0, 0]],
[[0, 0]]

if($max == 16)

[[0,0], [0,0], [0,0], [0,0]],
[[0,0], [0,0], [0,0], [0,0]],
[[0,0], [0,0]],
[[0,0], [0,0]],
[[0,0]],
[[0,0]]

if($max == 32)

[[0,0], [0,0], [0,0], [0,0], [0,0], [0,0], [0,0], [0,0]],
[[0,0], [0,0], [0,0], [0,0], [0,0], [0,0], [0,0], [0,0]],
[[0,0], [0,0], [0,0], [0,0]],
[[0,0], [0,0], [0,0], [0,0]],
[[0,0], [0,0]],
[[0,0], [0,0]],
[[0,0]],
[[0,0]]

etc until 512. Thanks

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
232 views
Welcome To Ask or Share your Answers For Others

1 Answer

So basically this would do:

$max = 8;
$arrays = array();
for($i = $max/4; $i >= 1; $i/=2) {
  $array = array_fill(0, $i, array(0,0));
  $arrays[] = $array;
  $arrays[] = $array;
}

And as a string:

$max = 8;
$arrays = array();
for($i = $max/4; $i >= 1; $i/=2) {
  $array = array_fill(0, $i, '[0,0]');
  $array = '['.implode(', ', $array).']';
  $arrays[] = $array;
  $arrays[] = $array;
}
$arrays = implode(",
", $arrays);

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...