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