PHP
<?php
foreach(range(0,3) as $i){
echo $i.chr(10);
}
output
0
1
2
3
これでfor文はいらない
Go to list of users who liked
More than 5 years have passed since last update.
<?php
foreach(range(0,3) as $i){
echo $i.chr(10);
}
0
1
2
3
これでfor文はいらない
Register as a new user and use Qiita more conveniently
Go to list of users who liked