在 PHP 中模拟 while 循环
我正在使用 smarty 版本 2 的系统中构建一些东西。我正在编写的代码需要使用 while
循环,但是,while
循环直到版本 3。
您可以使用 for
或 foreach
之类的东西来模拟 while
循环吗?也许使用两个条件循环或过早中断?我有什么选择?
PS:安装插件来提供 while
循环功能不是一种选择。
I'm building something in a system that utilizes smarty version 2. The code I'm writing needs to utilize a while
loop, however, the while
loop was not introduced until version 3.
Can you simiulate a while
loop using something like for
or foreach
? Maybe looping using two conditions or breaking out prematurely? What are my options?
PS: Installing the plugin to provide while
loop functionality is not an option.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
for 循环 while 循环如下所示:
演示: http://codepad.org/KPBUk4ZN
阅读此处将本机 PHP 转换为 smarty
A for loop while loop is like so:
Demo: http://codepad.org/KPBUk4ZN
Read here for converting native PHP to smarty