Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
for next ループを使用するための手順が必要です。
vb または vb.net で
for i=0 to 1000 STEP 50 .... next
このコードをphpで使用するにはどうすればよいですか?
次のようなものを使用できます。
for ($i = 0; $i <= 1000; $i += 50) { // Your code... }
詳細については、PHPforを読むことをお勧めします。
for